Commit 31356e9 1 parent eec6a1d commit 31356e9 Copy full SHA for 31356e9
File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -174,17 +174,24 @@ production:
174
174
This can either be specified through shell variables or a dotenv file.
175
175
176
176
### Shell
177
- In ` bash`, you can set variables like so:
177
+ You can set variables like so:
178
+
178
179
` ` ` bash
180
+ # bash
179
181
export PROD_DB_USER="username" PROD_DB_PASS="password"
182
+
183
+ # fish
184
+ set --export --global PROD_DB_USER "username"; set --export --global PROD_DB_PASS "password"
180
185
```
181
186
182
187
### Dotenv
183
188
Wordmove supports the [ dotenv] ( https://github.com/bkeepers/dotenv ) module. Simply create a file named ` .env ` next to your movefile:
189
+
184
190
``` dosini
185
191
PROD_DB_USER =username
186
192
PROD_DB_PASS =password
187
193
```
194
+
188
195
You may also use ` .env.{environmentname} ` , but this is discouraged.
189
196
190
197
## Supports
You can’t perform that action at this time.
0 commit comments