@drumee/setup-infra 1.0.16 → 1.0.19

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.
package/index.js CHANGED
@@ -17,6 +17,7 @@ const JSON_OPT = { spaces: 2, EOL: "\r\n" };
17
17
  let {
18
18
  ACME_DIR,
19
19
  ACME_EMAIL_ACCOUNT,
20
+ ACME_ENV_FILE,
20
21
  ADMIN_EMAIL,
21
22
  BACKUP_STORAGE,
22
23
  CERTS_DIR,
@@ -342,6 +343,7 @@ function getSysConfigs() {
342
343
  const opt = [
343
344
  ["acme_dir", ACME_DIR],
344
345
  ["acme_email_account", ACME_EMAIL_ACCOUNT, ADMIN_EMAIL],
346
+ ["acme_env_file", ACME_ENV_FILE],
345
347
  ["admin_email", ADMIN_EMAIL],
346
348
  ["backup_storage", backup_storage, ""],
347
349
  ["certs_dir", CERTS_DIR],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drumee/setup-infra",
3
- "version": "1.0.16",
3
+ "version": "1.0.19",
4
4
  "description": "Drumee Infrastructure Setup Utilities",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -63,3 +63,4 @@ export DRUMEE_DB_BACKUP=<%= backup_storage %>/db
63
63
  export PUBLIC_UI_ROOT=<%= public_ui_root %>
64
64
  export PUBLIC_HTTP_PORT=<%= public_http_port %>
65
65
  export PUBLIC_HTTPS_PORT=<%= public_https_port %>
66
+ export ACME_ENV_FILE=<%= acme_env_file %>