@fluxup/install 1.2.0 → 1.2.1
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/package.json +1 -1
- package/src/env.schema.js +12 -0
package/package.json
CHANGED
package/src/env.schema.js
CHANGED
|
@@ -108,6 +108,18 @@ export const ENV_SCHEMA = [
|
|
|
108
108
|
prompt: 'Database password',
|
|
109
109
|
secret: true,
|
|
110
110
|
},
|
|
111
|
+
{
|
|
112
|
+
group: 'Database (PostgreSQL)',
|
|
113
|
+
key: 'DB_PORT',
|
|
114
|
+
prompt: 'Database host port (exposed on the host machine)',
|
|
115
|
+
default: '5432',
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
group: 'Database (PostgreSQL)',
|
|
119
|
+
key: 'DB_BIND_HOST',
|
|
120
|
+
prompt: 'Host address the DB port binds to (127.0.0.1 = localhost only; 0.0.0.0 = all interfaces)',
|
|
121
|
+
default: '127.0.0.1',
|
|
122
|
+
},
|
|
111
123
|
{
|
|
112
124
|
group: 'Database (PostgreSQL)',
|
|
113
125
|
key: 'JPA_DDL_AUTO',
|