diff options
| -rw-r--r-- | README.md | 4 | ||||
| -rw-r--r-- | sample_config.json | 3 |
2 files changed, 6 insertions, 1 deletions
@@ -14,5 +14,7 @@ Run the following commands from this directory to fetch dependencies and compile ``` $ yarn -$ gulp +$ gulp --config=config.json ``` + +**Note:** You need to replace `config.json` with the name / path of a real config file. This config file can be created by making a copy of the `sample_config.json` template and replacing the entries with your setup data. Make sure not to check this new config file into the VCS, as it is unique to each deployment situation. diff --git a/sample_config.json b/sample_config.json new file mode 100644 index 00000000..628476ed --- /dev/null +++ b/sample_config.json @@ -0,0 +1,3 @@ +{ + "GOOGLE_OAUTH_CLIENT_ID": "the-google-oauth-client-id" +} |
