summaryrefslogtreecommitdiff
path: root/back-end/src
diff options
context:
space:
mode:
Diffstat (limited to 'back-end/src')
-rw-r--r--back-end/src/CMNext.sample.json44
-rw-r--r--back-end/src/Content.Publishing.Blog.Admin.csproj3
2 files changed, 46 insertions, 1 deletions
diff --git a/back-end/src/CMNext.sample.json b/back-end/src/CMNext.sample.json
new file mode 100644
index 0000000..1b3c516
--- /dev/null
+++ b/back-end/src/CMNext.sample.json
@@ -0,0 +1,44 @@
+{
+ //Enables debug logging
+ "debug": false,
+
+ "post_endpoint": {
+ "path": "/blog/posts"
+ },
+
+ "channel_endpoint": {
+ "path": "/blog/channels"
+ },
+
+ "content_endpoint": {
+ "path": "/blog/content",
+ "max_content_length": 50000000
+ },
+
+ "blog_channels": {
+ //The index file for storing channel configuration
+ "index_file_name": "blogs/channels.json"
+ },
+
+ //S3 setup with vault secrets
+ "disabled s3_config": {
+ "server_address": "",
+ "access_key": "",
+ "bucket": "",
+ "use_ssl": true,
+ "Region": null
+ },
+
+ "disabled ftp_config": {
+ "url": "",
+ "username": "",
+ //Base path within the ftp user's directory
+ "base_path": ""
+ },
+
+ "secrets": {
+ //Set the vault path to the s3 secret
+ "s3_secret": "",
+ "ftp_password": ""
+ }
+} \ No newline at end of file
diff --git a/back-end/src/Content.Publishing.Blog.Admin.csproj b/back-end/src/Content.Publishing.Blog.Admin.csproj
index cb6ade1..afbc9e1 100644
--- a/back-end/src/Content.Publishing.Blog.Admin.csproj
+++ b/back-end/src/Content.Publishing.Blog.Admin.csproj
@@ -7,6 +7,7 @@
<PackageReadmeFile>README.md</PackageReadmeFile>
<RootNamespace>Content.Publishing.Blog.Admin</RootNamespace>
<AssemblyName>CMNext</AssemblyName>
+ <Version>0.1.1</Version>
</PropertyGroup>
<PropertyGroup>
@@ -38,7 +39,7 @@
</ItemGroup>
<ItemGroup>
- <None Update="CMNExt.json">
+ <None Update="CMNext.sample.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>