et_full_system 0.1.36 → 0.1.37
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 +1 -1
- data/docker/Dockerfile +0 -3
- data/lib/et_full_system/cli/local.rb +2 -2
- 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: fe84809ad5afb3b644912d1a0cc3afc92823a043c054b3a390d75e5f91f7b3eb
|
|
4
|
+
data.tar.gz: a5ffbb484c3bbfddb04aa3b5a7749bc5250a7b144128f1dbe6b4aab31f967a98
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b9c6f4a191757c0bdfa322eab3237cfe58f9d97db1a3a17e279771a1267b40b62d080665cb097c7e509169a895253a6b14a5f70a5f01185863a48c631593ca50
|
|
7
|
+
data.tar.gz: 94e4e9f7d7c3a331829b290cfa3467dfe32ad3855a77127c2416993e9e26e6c853d344f4bc717aca7a442c512162339f41da134d06b7f7d856fb3a9f00599a4b
|
data/Gemfile.lock
CHANGED
data/docker/Dockerfile
CHANGED
|
@@ -79,9 +79,6 @@ WORKDIR /home/app/full_system
|
|
|
79
79
|
RUN echo "app ALL=(root) NOPASSWD:ALL" > /etc/sudoers.d/user && chmod 0440 /etc/sudoers.d/user
|
|
80
80
|
USER app
|
|
81
81
|
|
|
82
|
-
RUN mkdir /tmp/azurite_storage
|
|
83
|
-
RUN mkdir /tmp/minio_storage
|
|
84
|
-
|
|
85
82
|
RUN bash --login -c "rvm --default use 2.5.1"
|
|
86
83
|
RUN bash --login -c "gem install bundler"
|
|
87
84
|
|
|
@@ -80,8 +80,8 @@ module EtFullSystem
|
|
|
80
80
|
|
|
81
81
|
desc "server", "Starts the full system server"
|
|
82
82
|
method_option :without, type: :array, default: [], banner: "service1 service2", desc: "If specified, disables the specified services from running. The services are et1_web, et1_sidekiq, et3_web, mail_web, api_web, api_sidekiq, admin_web, atos_api_web, s3_web, azure_blob_web, fake_acas_web"
|
|
83
|
-
method_option :azurite_storage_path, default: '/tmp/azurite_storage', desc: "Where to store azurite data"
|
|
84
|
-
method_option :minio_storage_path, default: '/tmp/minio_storage', desc: "Where to store minio data"
|
|
83
|
+
method_option :azurite_storage_path, default: ENV.fetch('AZURITE_STORAGE_PATH', '/tmp/azurite_storage'), desc: "Where to store azurite data"
|
|
84
|
+
method_option :minio_storage_path, default: ENV.fetch('MINIO_STORAGE_PATH', '/tmp/minio_storage'), desc: "Where to store minio data"
|
|
85
85
|
method_option :rails_env, type: :string, default: ENV.fetch('RAILS_ENV', 'production')
|
|
86
86
|
method_option :cloud_provider, type: :string, default: ENV.fetch('CLOUD_PROVIDER', 'amazon')
|
|
87
87
|
def server
|