From 5dfe3dc0db51624082d20a31767c5a6aa774749d Mon Sep 17 00:00:00 2001 From: vnugent Date: Fri, 15 Sep 2023 12:09:17 -0400 Subject: ci pipeline for complete builds --- ci/config/CMNext.json | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 ci/config/CMNext.json (limited to 'ci/config/CMNext.json') diff --git a/ci/config/CMNext.json b/ci/config/CMNext.json new file mode 100644 index 0000000..1b3c516 --- /dev/null +++ b/ci/config/CMNext.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 -- cgit