et_full_system 6.0.0.pre.rc4 → 6.0.0.pre.rc5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/foreman/ComposeProcfile +9 -9
- data/lib/et_full_system/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b2b4a4cb24104d141ded9322c78f2fd7a10d9074b43c3a3ebcd845554b299cdc
|
|
4
|
+
data.tar.gz: 1c863d9048e919e0a347ff92c6833d8aea41f46554e5eafaa494bea0e3377c56
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4ea2b0c89c71f32995d526dc29e8116e20c741fd8704330ba4c16ef4a562ce8949075551a1a0fd8d50df31008343467dfb4da5755349bc84b0d6b7b4a409ca7b
|
|
7
|
+
data.tar.gz: d28496facd99856ca2866ad0b967b43c92cc59e14afad5ade0c5c0af2525d750330dd823923952f38b78257d42e31e80ad6f1084e8a35f3a64fa6e997521f819
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
et_full_system (6.0.0.pre.
|
|
4
|
+
et_full_system (6.0.0.pre.rc5)
|
|
5
5
|
aws-sdk-s3 (~> 1.9)
|
|
6
6
|
azure-storage (~> 0.15.0.preview)
|
|
7
7
|
dotenv (~> 2.7, >= 2.7.2)
|
|
@@ -24,7 +24,7 @@ GEM
|
|
|
24
24
|
addressable (2.8.0)
|
|
25
25
|
public_suffix (>= 2.0.2, < 5.0)
|
|
26
26
|
aws-eventstream (1.2.0)
|
|
27
|
-
aws-partitions (1.
|
|
27
|
+
aws-partitions (1.531.0)
|
|
28
28
|
aws-sdk-core (3.122.1)
|
|
29
29
|
aws-eventstream (~> 1, >= 1.0.2)
|
|
30
30
|
aws-partitions (~> 1, >= 1.525.0)
|
data/foreman/ComposeProcfile
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
et1_web: export FREEPORT=$(freeport) &&
|
|
2
|
-
et3_web: export FREEPORT=$(freeport) &&
|
|
3
|
-
api_web: export FREEPORT=$(freeport) &&
|
|
4
|
-
admin_web: export FREEPORT=$(freeport) &&
|
|
5
|
-
atos_api_web: export FREEPORT=$(freeport) &&
|
|
1
|
+
et1_web: export FREEPORT=$(freeport) && dotenv -f ${FOREMAN_PATH}/.env dotenv -f ${FOREMAN_PATH}/et1.env bash --login -c "cd ${FS_ROOT_PATH} && et_full_system local wait_for_support && et_full_system local update_service_url et1 http://localhost:$FREEPORT && cd systems/et1 && PORT=$FREEPORT ./run.sh"
|
|
2
|
+
et3_web: export FREEPORT=$(freeport) && dotenv -f ${FOREMAN_PATH}/.env dotenv -f ${FOREMAN_PATH}/et3.env bash --login -c "cd ${FS_ROOT_PATH} && et_full_system local wait_for_support && et_full_system local update_service_url et3 http://localhost:$FREEPORT && cd systems/et3 && PORT=$FREEPORT ./run.sh"
|
|
3
|
+
api_web: export FREEPORT=$(freeport) && dotenv -f ${FOREMAN_PATH}/.env dotenv -f ${FOREMAN_PATH}/et_api.env bash --login -c "cd ${FS_ROOT_PATH} && et_full_system local wait_for_support && et_full_system local update_service_url api http://localhost:$FREEPORT && cd systems/api && PORT=$FREEPORT ./run.sh"
|
|
4
|
+
admin_web: export FREEPORT=$(freeport) && dotenv -f ${FOREMAN_PATH}/.env dotenv -f ${FOREMAN_PATH}/et_admin.env bash --login -c "cd ${FS_ROOT_PATH} && et_full_system local wait_for_support && et_full_system local update_service_url admin http://localhost:$FREEPORT && cd systems/admin && PORT=$FREEPORT ./run.sh"
|
|
5
|
+
atos_api_web: export FREEPORT=$(freeport) && dotenv -f ${FOREMAN_PATH}/.env dotenv -f ${FOREMAN_PATH}/et_atos.env bash --login -c "cd ${FS_ROOT_PATH} && et_full_system local wait_for_support && et_full_system local update_service_url atos_api http://localhost:$FREEPORT && cd systems/atos && PORT=$FREEPORT ./run.sh"
|
|
6
6
|
fake_acas_web: export FREEPORT=$(freeport) && bash --login -c "cd ${FS_ROOT_PATH} && et_full_system local wait_for_support && et_full_system local update_service_url fake_acas http://localhost:$FREEPORT && rvm use && et_fake_acas_server -port $FREEPORT -threads=1 -workers=2"
|
|
7
7
|
fake_ccd_web: export FREEPORT=$(freeport) && bash --login -c "cd ${FS_ROOT_PATH} && et_full_system local wait_for_support && et_full_system local update_service_url fake_ccd http://localhost:$FREEPORT && rvm use && et_fake_ccd start --port=$FREEPORT --create_case_schema=./systems/et_ccd_export/spec/json_schemas/case_create.json"
|
|
8
|
-
fake_notify_web: export FREEPORT=$(freeport) &&
|
|
9
|
-
et1_sidekiq: bash --login -c "cd ${FS_ROOT_PATH} && et_full_system local wait_for_support && cd systems/et1 &&
|
|
10
|
-
api_sidekiq: bash --login -c "cd ${FS_ROOT_PATH} && et_full_system local wait_for_support && cd systems/api &&
|
|
11
|
-
et_ccd_export_sidekiq: bash --login -c "cd ${FS_ROOT_PATH} && et_full_system local wait_for_support && cd systems/et_ccd_export &&
|
|
8
|
+
fake_notify_web: export FREEPORT=$(freeport) && dotenv -f ${FOREMAN_PATH}/.env dotenv -f ${FOREMAN_PATH}/fake_notify.env bash --login -c "cd ${FS_ROOT_PATH} && et_full_system local wait_for_support && et_full_system local update_service_url fake_notify http://localhost:$FREEPORT && rvm use && gov_fake_notify start --port=$FREEPORT --config=${FOREMAN_PATH}/gov_fake_notify.yaml"
|
|
9
|
+
et1_sidekiq: bash --login -c "cd ${FS_ROOT_PATH} && et_full_system local wait_for_support && cd systems/et1 && dotenv -f ${FOREMAN_PATH}/.env dotenv -f ${FOREMAN_PATH}/et1.env ./run_sidekiq.sh"
|
|
10
|
+
api_sidekiq: bash --login -c "cd ${FS_ROOT_PATH} && et_full_system local wait_for_support && cd systems/api && dotenv -f ${FOREMAN_PATH}/.env dotenv -f ${FOREMAN_PATH}/et_api.env ./run_sidekiq.sh"
|
|
11
|
+
et_ccd_export_sidekiq: bash --login -c "cd ${FS_ROOT_PATH} && et_full_system local wait_for_support && cd systems/et_ccd_export && dotenv -f ${FOREMAN_PATH}/.env dotenv -f ${FOREMAN_PATH}/et_ccd_export.env ./run_sidekiq.sh"
|