Skip to content

Commit 31356e9

Browse files
committedApr 19, 2018
Update README for syntax and clarity
1 parent eec6a1d commit 31356e9

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed
 

‎README.mdown

+8-1
Original file line numberDiff line numberDiff line change
@@ -174,17 +174,24 @@ production:
174174
This can either be specified through shell variables or a dotenv file.
175175
176176
### Shell
177-
In `bash`, you can set variables like so:
177+
You can set variables like so:
178+
178179
```bash
180+
# bash
179181
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"
180185
```
181186

182187
### Dotenv
183188
Wordmove supports the [dotenv](https://github.com/bkeepers/dotenv) module. Simply create a file named `.env` next to your movefile:
189+
184190
```dosini
185191
PROD_DB_USER=username
186192
PROD_DB_PASS=password
187193
```
194+
188195
You may also use `.env.{environmentname}`, but this is discouraged.
189196

190197
## Supports

0 commit comments

Comments
 (0)
Please sign in to comment.