-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #515 from artoonie/fork/slhudson/chore/readme
startup tweaks and README additions (#512)
- Loading branch information
Showing
7 changed files
with
123 additions
and
75 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 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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
### The following fields must be provided to run RCVis locally and visualize results. | ||
|
||
# a user-generated string | ||
export RCVIS_SECRET_KEY='' | ||
|
||
# set to True to enable debug mode | ||
export RCVIS_DEBUG=True | ||
|
||
# host IP address | ||
export RCVIS_HOST=localhost | ||
|
||
# toggle offline mode | ||
export OFFLINE_MODE=True | ||
|
||
# email address for local admin in offline mode | ||
export OFFLINE_ADMIN='name@domain.com' | ||
|
||
### The following fields are optional, though you will have limited functionality without them. | ||
### These limitations are suitable for local development, but must be set up when deploying -- including cache management, registration email management, and mailing list management. | ||
|
||
# As an alternative to using OFFLINE_MODE=True, you may uncomment the following block to use AWS storage instead of local storage | ||
# export OFFLINE_MODE=False | ||
# export AWS_STORAGE_BUCKET_NAME='' | ||
# export AWS_S3_REGION_NAME='' | ||
# export AWS_ACCESS_KEY_ID='' | ||
# export AWS_SECRET_ACCESS_KEY='' | ||
|
||
# To send registration emails when OFFLINE_MODE is False: | ||
# export SENDGRID_USERNAME='' | ||
# export SENDGRID_PASSWORD='' | ||
|
||
# To clear cloudflare cache when models update: | ||
# export CLOUDFLARE_ZONE_ID='' | ||
# export CLOUDFLARE_AUTH_TOKEN='' | ||
|
||
# To run the SauceLabs integration tests: | ||
export SAUCE_USERNAME='' | ||
export SAUCE_ACCESS_KEY='' | ||
|
||
# To generate videos (and to run movie tests): | ||
export IMAGEIO_FFMPEG_EXE='/usr/bin/ffmpeg' | ||
export SQS_QUEUE_NAME='default-queue' | ||
# export MOVIE_FONT_NAME="Roboto" | ||
# export AWS_POLLY_STORAGE_BUCKET_NAME="bucket-name-on-s3" | ||
|
||
# To subscribe users to mailchimp upon registration: | ||
# export MAILCHIMP_API_KEY='' | ||
# export MAILCHIMP_LIST_ID='' | ||
# export MAILCHIMP_DC='' | ||
|
||
# If you are updating a template, you'll need to clear the cache every time or set: | ||
# export DISABLE_CACHE=True |
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