Update example start command to allow spaces in vars

This commit is contained in:
Pete Schwamb
2017-06-27 13:50:22 -05:00
parent 89a9d9f5ad
commit 52a920d9ea
+1 -1
View File
@@ -493,7 +493,7 @@ Easy to emulate on the commandline:
From now on you can run using
```bash
$ env $(cat my.env) PORT=1337 node server.js
$ (eval $(cat my.env | sed 's/^/export /') && PORT=1337 node server.js)
```
Your hosting provider probably has a way to set these through their GUI.