et_full_system 6.0.0.pre.rc13 → 6.0.0.pre.rc17

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 435ab38785a683eb7e5a76355965bfdd7e4db76e60e499675caace396589300a
4
- data.tar.gz: 0d97b907f56c7e3da3390fa4e0a353e1c1fbb3ddb6a2a64a6a773f1b291b6db1
3
+ metadata.gz: 0d79c24ec890ad41728d10b914abd32ca0c693a14e3eedada4a27d62e164e8f4
4
+ data.tar.gz: ce0a529bd9c0f02b40b68907ed41f8f88a820d8ac92463fc5986e188b2508def
5
5
  SHA512:
6
- metadata.gz: 69414e9b7ebad03260f70316dd2b3c8f62ebf686ed9611674028d158be1dd3158aeea97992cf4c47eda953681ce6059e2a16412a5b8f684f20de6b9b988686e4
7
- data.tar.gz: 9657cb2432efb9985414f4bfdc2844933a939b557a4e533b151b2a10c16bea86c62950c5f001078198c5a1d306bbe5256088248cc594bc7ab954853022bcd429
6
+ metadata.gz: 01ae37e59b819cd052683ee851cdf5e20c0a060678059ba2fa815b396bb8b27483a3934dc32ba81a456c5b33d169446b649c45f6688593dfe8fa7362920d2051
7
+ data.tar.gz: 8a3aaa88f21aa3b0ac6659f51d6f13da53101b612740154dbbeee33a3d2fb31af72985c2c020a3146eb1a9567aeb5cf383a8cd26d9a6c2cd7db6443b483ac468
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.rc13)
4
+ et_full_system (6.0.0.pre.rc17)
5
5
  aws-sdk-s3 (~> 1.9)
6
6
  azure-storage (~> 0.15.0.preview)
7
7
  dotenv (~> 2.7, >= 2.7.2)
@@ -15,6 +15,13 @@ services:
15
15
  - /var/run/docker.sock:/var/run/docker.sock
16
16
  networks:
17
17
  - et_full_system
18
+ links:
19
+ - db
20
+ - redis
21
+ - minio
22
+ - azurite
23
+ - mailhog
24
+ - et
18
25
  et:
19
26
  image: 'et_full_system:1.0.0.pre'
20
27
  build:
@@ -28,6 +35,12 @@ services:
28
35
  - '${SERVER_PORT:-3100}:${SERVER_PORT:-3100}'
29
36
  - '${TRAEFIX_PORT:-3200}:${TRAEFIK_PORT:-3200}'
30
37
  - '${SMTP_PORT:-1025}:${SMTP_PORT:-1025}'
38
+ links:
39
+ - db
40
+ - redis
41
+ - minio
42
+ - azurite
43
+ - mailhog
31
44
  extra_hosts:
32
45
  - "localhost.from.docker:${LOCALHOST_FROM_DOCKER_IP}"
33
46
  volumes:
@@ -83,9 +96,6 @@ services:
83
96
  CCD_SIDAM_USERNAME: ${CCD_SIDAM_USERNAME:-m@m.com}
84
97
  CCD_SIDAM_PASSWORD: ${CCD_SIDAM_PASSWORD:-p}
85
98
  command: /bin/bash --login -c "cd /home/app/full_system && et_full_system local server --in-docker-compose ${SERVER_ARGS}"
86
- links:
87
- - "db"
88
- - "redis"
89
99
  networks:
90
100
  et_full_system:
91
101
  aliases:
@@ -148,6 +158,9 @@ services:
148
158
  - traefik.http.routers.s3-router.rule=Host(`s3.et.127.0.0.1.nip.io`)
149
159
  - traefik.http.routers.s3-router.service=et1-service
150
160
  - traefik.http.services.s3-service.loadbalancer.server.port=9000
161
+ command:
162
+ - server
163
+ - /data
151
164
  networks:
152
165
  - et_full_system
153
166
  mailhog:
@@ -1,11 +1,11 @@
1
- et1_web: export FREEPORT=$(freeport) && godotenv -f ${FOREMAN_PATH}/.env godotenv -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) && godotenv -f ${FOREMAN_PATH}/.env godotenv -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) && godotenv -f ${FOREMAN_PATH}/.env godotenv -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) && godotenv -f ${FOREMAN_PATH}/.env godotenv -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) && godotenv -f ${FOREMAN_PATH}/.env godotenv -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
- 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
- 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) && godotenv -f ${FOREMAN_PATH}/.env godotenv -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 && godotenv -f ${FOREMAN_PATH}/.env godotenv -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 && godotenv -f ${FOREMAN_PATH}/.env godotenv -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 && godotenv -f ${FOREMAN_PATH}/.env godotenv -f ${FOREMAN_PATH}/et_ccd_export.env ./run_sidekiq.sh"
1
+ et1_web: export godotenv -f ${FOREMAN_PATH}/.env godotenv -f ${FOREMAN_PATH}/et1.env bash --login -c "cd ${FS_ROOT_PATH} && cd systems/et1 && bundle exec iodine -port $PORT"
2
+ et3_web: godotenv -f ${FOREMAN_PATH}/.env godotenv -f ${FOREMAN_PATH}/et3.env bash --login -c "cd ${FS_ROOT_PATH} && et_full_system && cd systems/et3 && bundle exec iodine -port $PORT"
3
+ api_web: godotenv -f ${FOREMAN_PATH}/.env godotenv -f ${FOREMAN_PATH}/et_api.env bash --login -c "cd ${FS_ROOT_PATH} && cd systems/api && bundle exec iodine -port $PORT"
4
+ admin_web: godotenv -f ${FOREMAN_PATH}/.env godotenv -f ${FOREMAN_PATH}/et_admin.env bash --login -c "cd ${FS_ROOT_PATH} && cd systems/admin && bundle exec iodine -port $PORT"
5
+ atos_api_web: godotenv -f ${FOREMAN_PATH}/.env godotenv -f ${FOREMAN_PATH}/et_atos.env bash --login -c "cd ${FS_ROOT_PATH} && cd systems/atos && bundle exec iodine -port $PORT"
6
+ fake_acas_web: bash --login -c "cd ${FS_ROOT_PATH} && et_fake_acas_server -port $PORT -threads=1 -workers=2"
7
+ fake_ccd_web: bash --login -c "cd ${FS_ROOT_PATH} && et_fake_ccd start --port=$PORT --create_case_schema=./systems/et_ccd_export/spec/json_schemas/case_create.json"
8
+ fake_notify_web: godotenv -f ${FOREMAN_PATH}/.env godotenv -f ${FOREMAN_PATH}/fake_notify.env bash --login -c "cd ${FS_ROOT_PATH} && gov_fake_notify start --port=$PORT --config=${FOREMAN_PATH}/gov_fake_notify.yaml"
9
+ et1_sidekiq: bash --login -c "cd ${FS_ROOT_PATH} && cd systems/et1 && godotenv -f ${FOREMAN_PATH}/.env godotenv -f ${FOREMAN_PATH}/et1.env ./run_sidekiq.sh"
10
+ api_sidekiq: bash --login -c "cd ${FS_ROOT_PATH} && cd systems/api && godotenv -f ${FOREMAN_PATH}/.env godotenv -f ${FOREMAN_PATH}/et_api.env ./run_sidekiq.sh"
11
+ et_ccd_export_sidekiq: bash --login -c "cd ${FS_ROOT_PATH} && cd systems/et_ccd_export && godotenv -f ${FOREMAN_PATH}/.env godotenv -f ${FOREMAN_PATH}/et_ccd_export.env ./run_sidekiq.sh"
@@ -1,3 +1,3 @@
1
1
  module EtFullSystem
2
- VERSION = "6.0.0.pre.rc13"
2
+ VERSION = "6.0.0.pre.rc17"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: et_full_system
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.0.pre.rc13
4
+ version: 6.0.0.pre.rc17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gary Taylor