We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dc9995 commit 20ba3e0Copy full SHA for 20ba3e0
README.md
@@ -84,3 +84,15 @@ docker build . -t zero-deployable-backend
84
85
docker run -p 8080:8080 -e SERVER_PORT=8080 -e POD_NAME="Fake POD name." zero-deployable-backend
86
```
87
+
88
+### Environment Configs
89
90
+These are set by `REACT_APP_CONFIG` enviroment variable at build time. This corresponds to a json file in the config directory.
91
92
+For example to build the staging site and host it you would use:
93
94
+```zsh
95
+REACT_APP_CONFIG=staging yarn build
96
97
+serve -s build
98
+```
0 commit comments