From 866f64986db0253335d2406bb2a00001cbeb0792 Mon Sep 17 00:00:00 2001 From: Jeniamakarchik Date: Wed, 5 Feb 2020 15:59:54 +0300 Subject: [PATCH] add configuration files --- environments/demo/config/api_config.json | 5 +++++ environments/demo/config/queue_config.json | 7 +++++++ environments/dev/config/api_config.json | 5 +++++ environments/dev/config/queue_config.json | 7 +++++++ environments/lion/config/api_config.json | 5 +++++ environments/lion/config/queue_config.json | 7 +++++++ environments/loc_docker/config/api_config.json | 5 +++++ environments/loc_docker/config/queue_config.json | 7 +++++++ environments/local/config/api_config.json | 5 +++++ environments/local/config/queue_config.json | 7 +++++++ environments/prod/config/api_config.json | 5 +++++ environments/prod/config/queue_config.json | 7 +++++++ environments/qa/config/api_config.json | 5 +++++ environments/qa/config/queue_config.json | 7 +++++++ environments/qa_node/config/api_config.json | 5 +++++ environments/qa_node/config/queue_config.json | 7 +++++++ environments/test/config/api_config.json | 5 +++++ environments/test/config/queue_config.json | 7 +++++++ 18 files changed, 108 insertions(+) create mode 100644 environments/demo/config/api_config.json create mode 100644 environments/demo/config/queue_config.json create mode 100644 environments/dev/config/api_config.json create mode 100644 environments/dev/config/queue_config.json create mode 100644 environments/lion/config/api_config.json create mode 100644 environments/lion/config/queue_config.json create mode 100644 environments/loc_docker/config/api_config.json create mode 100644 environments/loc_docker/config/queue_config.json create mode 100644 environments/local/config/api_config.json create mode 100644 environments/local/config/queue_config.json create mode 100644 environments/prod/config/api_config.json create mode 100644 environments/prod/config/queue_config.json create mode 100644 environments/qa/config/api_config.json create mode 100644 environments/qa/config/queue_config.json create mode 100644 environments/qa_node/config/api_config.json create mode 100644 environments/qa_node/config/queue_config.json create mode 100644 environments/test/config/api_config.json create mode 100644 environments/test/config/queue_config.json diff --git a/environments/demo/config/api_config.json b/environments/demo/config/api_config.json new file mode 100644 index 0000000..cbd36e4 --- /dev/null +++ b/environments/demo/config/api_config.json @@ -0,0 +1,5 @@ +{ + "url": "@ApiURLDemo@", + "username": "@lcUsernameDemo@", + "password": "@lcPasswordDemo@" +} \ No newline at end of file diff --git a/environments/demo/config/queue_config.json b/environments/demo/config/queue_config.json new file mode 100644 index 0000000..978df85 --- /dev/null +++ b/environments/demo/config/queue_config.json @@ -0,0 +1,7 @@ +{ + "username": "@lcQueUsernameDemo@", + "password": "@lcQuePasswordDemo@", + "host": "@lcQueHostDemo@", + "port": "@lcQuePortDemo@", + "queue": "queueDocContentTypeImport" +} \ No newline at end of file diff --git a/environments/dev/config/api_config.json b/environments/dev/config/api_config.json new file mode 100644 index 0000000..e917995 --- /dev/null +++ b/environments/dev/config/api_config.json @@ -0,0 +1,5 @@ +{ + "url": "@ApiURLDev@", + "username": "@lcUsernameDev@", + "password": "@lcPasswordDev@" +} \ No newline at end of file diff --git a/environments/dev/config/queue_config.json b/environments/dev/config/queue_config.json new file mode 100644 index 0000000..cbf20d2 --- /dev/null +++ b/environments/dev/config/queue_config.json @@ -0,0 +1,7 @@ +{ + "username": "@lcQueUsernameDev@", + "password": "@lcQuePasswordDev@", + "host": "@lcQueHostDev@", + "port": "@lcQuePortDev@", + "queue": "queueDocContentTypeImport" +} \ No newline at end of file diff --git a/environments/lion/config/api_config.json b/environments/lion/config/api_config.json new file mode 100644 index 0000000..1e72acd --- /dev/null +++ b/environments/lion/config/api_config.json @@ -0,0 +1,5 @@ +{ + "url": "@ApiURLLion@", + "username": "@lcUsernameLion@", + "password": "@lcPasswordLion@" +} \ No newline at end of file diff --git a/environments/lion/config/queue_config.json b/environments/lion/config/queue_config.json new file mode 100644 index 0000000..20c1a40 --- /dev/null +++ b/environments/lion/config/queue_config.json @@ -0,0 +1,7 @@ +{ + "username": "@lcQueUsernameLion@", + "password": "@lcQuePasswordLion@", + "host": "@lcQueHostLion@", + "port": "@lcQuePortLion@", + "queue": "queueDocContentTypeImport" +} \ No newline at end of file diff --git a/environments/loc_docker/config/api_config.json b/environments/loc_docker/config/api_config.json new file mode 100644 index 0000000..3f24561 --- /dev/null +++ b/environments/loc_docker/config/api_config.json @@ -0,0 +1,5 @@ +{ + "url": "@ApiURLDock@", + "username": "@lcUsernameDock@", + "password": "@lcPasswordDock@" +} \ No newline at end of file diff --git a/environments/loc_docker/config/queue_config.json b/environments/loc_docker/config/queue_config.json new file mode 100644 index 0000000..cfbdcb6 --- /dev/null +++ b/environments/loc_docker/config/queue_config.json @@ -0,0 +1,7 @@ +{ + "username": "@lcQueUsernameDock@", + "password": "@lcQuePasswordDock@", + "host": "@lcQueHostDock@", + "port": "@lcQuePortDock@", + "queue": "queueDocContentTypeImport" +} \ No newline at end of file diff --git a/environments/local/config/api_config.json b/environments/local/config/api_config.json new file mode 100644 index 0000000..b119ca3 --- /dev/null +++ b/environments/local/config/api_config.json @@ -0,0 +1,5 @@ +{ + "url": "https://example.com/", + "username": "example@teqniksoft.com", + "password": "example" +} \ No newline at end of file diff --git a/environments/local/config/queue_config.json b/environments/local/config/queue_config.json new file mode 100644 index 0000000..034c33b --- /dev/null +++ b/environments/local/config/queue_config.json @@ -0,0 +1,7 @@ +{ + "username": "example", + "password": "example", + "host": "255.255.255.255", + "port": "", + "queue": "queueExampleName" +} \ No newline at end of file diff --git a/environments/prod/config/api_config.json b/environments/prod/config/api_config.json new file mode 100644 index 0000000..667652f --- /dev/null +++ b/environments/prod/config/api_config.json @@ -0,0 +1,5 @@ +{ + "url": "@ApiURLProd@", + "username": "@lcUsernameProd@", + "password": "@lcPasswordProd@" +} \ No newline at end of file diff --git a/environments/prod/config/queue_config.json b/environments/prod/config/queue_config.json new file mode 100644 index 0000000..41e06f0 --- /dev/null +++ b/environments/prod/config/queue_config.json @@ -0,0 +1,7 @@ +{ + "username": "@lcQueUsernameProd@", + "password": "@lcQuePasswordProd@", + "host": "@lcQueHostProd@", + "port": "@lcQuePortProd@", + "queue": "queueDocContentTypeImport" +} \ No newline at end of file diff --git a/environments/qa/config/api_config.json b/environments/qa/config/api_config.json new file mode 100644 index 0000000..403e919 --- /dev/null +++ b/environments/qa/config/api_config.json @@ -0,0 +1,5 @@ +{ + "url": "@ApiURLQA@", + "username": "@lcUsernameQA@", + "password": "@lcPasswordQA@" +} \ No newline at end of file diff --git a/environments/qa/config/queue_config.json b/environments/qa/config/queue_config.json new file mode 100644 index 0000000..c260fd3 --- /dev/null +++ b/environments/qa/config/queue_config.json @@ -0,0 +1,7 @@ +{ + "username": "@lcQueUsernameQA@", + "password": "@lcQuePasswordQA@", + "host": "@lcQueHostQA@", + "port": "@lcQuePortQA@", + "queue": "queueDocContentTypeImport" +} \ No newline at end of file diff --git a/environments/qa_node/config/api_config.json b/environments/qa_node/config/api_config.json new file mode 100644 index 0000000..ad9f7a8 --- /dev/null +++ b/environments/qa_node/config/api_config.json @@ -0,0 +1,5 @@ +{ + "url": "@ApiURLQAN@", + "username": "@lcUsernameQAN@", + "password": "@lcPasswordQAN@" +} \ No newline at end of file diff --git a/environments/qa_node/config/queue_config.json b/environments/qa_node/config/queue_config.json new file mode 100644 index 0000000..a2502d4 --- /dev/null +++ b/environments/qa_node/config/queue_config.json @@ -0,0 +1,7 @@ +{ + "username": "@lcQueUsernameQAN@", + "password": "@lcQuePasswordQAN@", + "host": "@lcQueHostQAN@", + "port": "@lcQuePortQAN@", + "queue": "queueDocContentTypeImport" +} \ No newline at end of file diff --git a/environments/test/config/api_config.json b/environments/test/config/api_config.json new file mode 100644 index 0000000..c6d051b --- /dev/null +++ b/environments/test/config/api_config.json @@ -0,0 +1,5 @@ +{ + "url": "@ApiURLTest@", + "username": "@lcUsernameTest@", + "password": "@lcPasswordTest@" +} \ No newline at end of file diff --git a/environments/test/config/queue_config.json b/environments/test/config/queue_config.json new file mode 100644 index 0000000..b529bf1 --- /dev/null +++ b/environments/test/config/queue_config.json @@ -0,0 +1,7 @@ +{ + "username": "@lcQueUsernameTest@", + "password": "@lcQuePasswordTest@", + "host": "@lcQueHostTest@", + "port": "@lcQuePortTest@", + "queue": "queueDocContentTypeImport" +} \ No newline at end of file