diff --git a/docs/dev_environment.md b/docs/dev_environment.md --- a/docs/dev_environment.md +++ b/docs/dev_environment.md @@ -486,22 +486,29 @@ } ``` -Next, we’ll create a file for constructing URLs for the main app. +Next, we’ll create files for constructing URLs for the main app. ``` -vim server/facts/app_url.json +vim server/facts/squadcal_url.json ``` -Your `app_url.json` file should look like this: +Your `squadcal_url.json` file should look like this: ```json { "baseDomain": "http://localhost", "basePath": "/comm/", + "baseRoutePath": "/comm/", "https": false } ``` +Copy the contents of `squadcal_url.json` to a file called `commapp_url.json`. + +``` +cp server/facts/squadcal_url.json server/facts/commapp_url.json +``` + Finally, we’ll create a file for the URLs in the landing page. ```