et_full_system 1.0.1.pre13 → 1.0.1.pre14
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/lib/et_full_system/cli/docker.rb +5 -5
- 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: 75d953ca5a51b548447f8c4c49422b19315029c081ea88415eb6f881cf4a4ce7
|
4
|
+
data.tar.gz: 4e336ef3aae83383c3b2ff7fadb970f63b6f04b5bde28d237c1901019d4db087
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0288afe0df558a547e1c05e9b39ea28771f8112b09c43df2e558c85c7eac5860370d0d33a5f55f56ec779127e5b4ed06d84dcab2d2811331ef2df71b58850c77'
|
7
|
+
data.tar.gz: 84e922c8d0ec187c843954b513d96cf7067b5876397f8ea4b9fc8dfc3e7ec21ae09634baaa612c43c7e4f56f366ed9ab140919f522f0b091c661ac2f384ccb09
|
data/Gemfile.lock
CHANGED
@@ -71,7 +71,7 @@ module EtFullSystem
|
|
71
71
|
def local_et1(port)
|
72
72
|
local_service('et1', port)
|
73
73
|
disable_et1
|
74
|
-
puts "ET1 is now expected to be hosted on port #{port} on your machine. To configure your environment, run 'et_full_system docker et1_env > .env
|
74
|
+
puts "ET1 is now expected to be hosted on port #{port} on your machine. To configure your environment, run 'et_full_system docker et1_env > .env'"
|
75
75
|
end
|
76
76
|
|
77
77
|
|
@@ -83,7 +83,7 @@ module EtFullSystem
|
|
83
83
|
desc "local_ccd_export", "Disables the sidekiq process in the invoker system to allow a developer to run it locally"
|
84
84
|
def local_ccd_export
|
85
85
|
run_on_local('disable_ccd_export')
|
86
|
-
puts "ccd_export is now expected to be running on your machine. To configure your environment, run 'et_full_system docker ccd_export_env > .env
|
86
|
+
puts "ccd_export is now expected to be running on your machine. To configure your environment, run 'et_full_system docker ccd_export_env > .env'"
|
87
87
|
end
|
88
88
|
|
89
89
|
desc "ccd_export_env", "Shows ccd_export's environment variables as they should be on a developers machine running locally"
|
@@ -95,7 +95,7 @@ module EtFullSystem
|
|
95
95
|
def local_api(port)
|
96
96
|
local_service('api', port)
|
97
97
|
disable_api
|
98
|
-
puts "api is now expected to be hosted on port #{port} on your machine. Also, you must provide your own sidekiq. To configure your environment, run 'et_full_system docker api_env > .env
|
98
|
+
puts "api is now expected to be hosted on port #{port} on your machine. Also, you must provide your own sidekiq. To configure your environment, run 'et_full_system docker api_env > .env'"
|
99
99
|
end
|
100
100
|
|
101
101
|
desc "api_env", "Shows api's environment variables as they should be on a developers machine running locally"
|
@@ -107,7 +107,7 @@ module EtFullSystem
|
|
107
107
|
def local_admin(port)
|
108
108
|
local_service('admin', port)
|
109
109
|
disable_admin
|
110
|
-
puts "Admin is now expected to be hosted on port #{port} on your machine. To configure your environment, run 'et_full_system docker admin_env > .env
|
110
|
+
puts "Admin is now expected to be hosted on port #{port} on your machine. To configure your environment, run 'et_full_system docker admin_env > .env'"
|
111
111
|
end
|
112
112
|
|
113
113
|
desc "admin_env", "Shows admin's environment variables as they should be on a developers machine running locally"
|
@@ -119,7 +119,7 @@ module EtFullSystem
|
|
119
119
|
def local_et3(port)
|
120
120
|
local_service('et3', port)
|
121
121
|
disable_et3
|
122
|
-
puts "ET3 is now expected to be hosted on port #{port} on your machine. To configure your environment, run 'et_full_system docker et3_env > .env
|
122
|
+
puts "ET3 is now expected to be hosted on port #{port} on your machine. To configure your environment, run 'et_full_system docker et3_env > .env'"
|
123
123
|
end
|
124
124
|
|
125
125
|
|