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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5701545b10d0693d4da97ffc3981bb3406aaed2909885881981d41ccb6d64231
4
- data.tar.gz: 188327570331592c3c110763b55c930e1386b8a6d7a5b0244c42b49592a2f9d2
3
+ metadata.gz: fe84809ad5afb3b644912d1a0cc3afc92823a043c054b3a390d75e5f91f7b3eb
4
+ data.tar.gz: a5ffbb484c3bbfddb04aa3b5a7749bc5250a7b144128f1dbe6b4aab31f967a98
5
5
  SHA512:
6
- metadata.gz: b2434779e63dd1fd9b630a1f336e75ca575959a823e204513d86bb1f026d6b04d5b29defa76d3753ef6b8999c8ded46b5079213e2baca8bbc4cf7b9cd349b4af
7
- data.tar.gz: aef199afe69f379100c599ab67131717d2e8c4ccb262e6193fb13188cf7beb13ce84ca60ce5019bf3552876304ecfaf7286f554159d154f797ffc226b26a1cb4
6
+ metadata.gz: b9c6f4a191757c0bdfa322eab3237cfe58f9d97db1a3a17e279771a1267b40b62d080665cb097c7e509169a895253a6b14a5f70a5f01185863a48c631593ca50
7
+ data.tar.gz: 94e4e9f7d7c3a331829b290cfa3467dfe32ad3855a77127c2416993e9e26e6c853d344f4bc717aca7a442c512162339f41da134d06b7f7d856fb3a9f00599a4b
data/Gemfile.lock CHANGED
@@ -14,7 +14,7 @@ GIT
14
14
  PATH
15
15
  remote: .
16
16
  specs:
17
- et_full_system (0.1.36)
17
+ et_full_system (0.1.37)
18
18
  aws-sdk-s3 (~> 1.9)
19
19
  azure-storage (~> 0.15.0.preview)
20
20
  dotenv (~> 2.7, >= 2.7.2)
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
@@ -1,3 +1,3 @@
1
1
  module EtFullSystem
2
- VERSION = "0.1.36"
2
+ VERSION = "0.1.37"
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: 0.1.36
4
+ version: 0.1.37
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gary Taylor