-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
♻️ Local dev environment improvements (#463)
* Adding a before you begin section * added install instructions to before you start still need version check * Completed changes to before you get started section * Completed changes to before you get started section * adding console format to some of them * playing with formatting * formatted code in block format * adding cd to server * add local redis image * server: clean up unused css selectors * clean up mongo deprecations * add start:local script * move vscode settings to vscode workspace * clean up server env file * reduce logging and add docker check * move db container away from default mogo port * update readmes * fix some readme typos * switch to correct cypress bin but find child process spawn bug * test to make sure this still works on travis * add testing docs and update redis port so we never see a redis v. redis showdown * clean * ⬆️ bump postcss version * add ability to reset local env * add extra help text in readmes Co-authored-by: aliza614 <[email protected]>
- Loading branch information
Showing
25 changed files
with
250 additions
and
229 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,26 @@ | ||
ALGOLIA_APP_ID=<example algolia app id> | ||
ALGOLIA_INDEX_NAME=<example algolia index name> | ||
ALGOLIA_WRITE_API_KEY=<example algolia write api key> | ||
BETA_APP=<boolean: if true, app will only display if 'beta' is in the hostname> | ||
BOT_USER_ID=<ID of user used to create automated jobs> | ||
ALGOLIA_APP_ID= | ||
ALGOLIA_INDEX_NAME= | ||
ALGOLIA_WRITE_API_KEY= | ||
BETA_APP= # boolean: if true, app will only display if 'beta' is in the hostname | ||
BOT_USER_ID= # ID of user used to create automated jobs | ||
DATABASE_PASSWORD=upswyng123 | ||
DATABASE_SESSION_SECRET= | ||
DATABASE_URL=mongodb://localhost:27017/upswyng-dev | ||
DATABASE_SESSION_SECRET=secret formula | ||
DATABASE_URL=mongodb://localhost:27018/upswyng-dev | ||
DATABASE_USER=upswyng-dev-user | ||
OAUTH_FACEBOOK_CLIENT_ID=<example facebook client id> | ||
OAUTH_FACEBOOK_CLIENT_SECRET=<example facebook secret> | ||
OAUTH_GOOGLE_CLIENT_ID=<example google client id> | ||
OAUTH_GOOGLE_CLIENT_SECRET=<example google secret> | ||
OAUTH_SLACK_CLIENT_ID=<example slack client id> | ||
OAUTH_SLACK_CLIENT_SECRET=<example slack secret> | ||
REDIS_URL=redis://localhost:6380 # used for worker queue | ||
WORKER_JOB_QUEUE_NAME=worker-test-queue | ||
OAUTH_FACEBOOK_CLIENT_ID= | ||
OAUTH_FACEBOOK_CLIENT_SECRET= | ||
OAUTH_GOOGLE_CLIENT_ID= | ||
OAUTH_GOOGLE_CLIENT_SECRET= | ||
OAUTH_SLACK_CLIENT_ID= | ||
OAUTH_SLACK_CLIENT_SECRET= | ||
OAUTH_SLACK_WORKSPACE_ID=T02GLC0V9 # see docs: https://api.slack.com/docs/sign-in-with-slack | ||
OPEN_WEATHER_API_KEY=<open_weather_secret> | ||
REDIS_URL=redis://<host>:<port> # used for worker queue | ||
SERVER_GOOGLE_CLOUD_API_KEY=<example google cloud api key> | ||
SERVER_HOST=upswyng.codeforboulder.org:80 | ||
OPEN_WEATHER_API_KEY= | ||
SERVER_GOOGLE_CLOUD_API_KEY= | ||
SERVER_HOST= | ||
SERVER_PROTOCOL=http | ||
SLACK_BOT_CHANNEL=proj-upswyng | ||
SLACK_BOT_OAUTH_ACCESS_TOKEN=<https://api.slack.com/apps -> 'OAuth & Permissions Tab' -> 'Bot User OAuth Access Token | ||
'> | ||
SLACK_OAUTH_ACCESS_TOKEN=<https://api.slack.com/apps -> 'OAuth & Permissions Tab' -> 'OAuth Access Token'> | ||
SLACK_BOT_OAUTH_ACCESS_TOKEN= # <https://api.slack.com/apps -> 'OAuth & Permissions Tab' -> 'Bot User OAuth Access Token'> | ||
SLACK_OAUTH_ACCESS_TOKEN= #<https://api.slack.com/apps -> 'OAuth & Permissions Tab' -> 'OAuth Access Token'> | ||
SLACK_SIGNING_SECRET= | ||
WORKER_JOB_QUEUE_NAME=worker-test-queue |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.