This repository was archived by the owner on Nov 26, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Clean up installation steps and docs #76
Merged
Merged
Changes from 7 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
161cc30
Restoring .env.example #31
unbracketed 3bfd391
Restoring use of dotenv #31
unbracketed af6afc3
Removes unused connecntion field from chatbot admin detail view
unbracketed f3762f2
Removes unused server_identifier field from chatbot admin detail view
unbracketed 9f301ba
Updates docs to match current state of the site; use #botbot-warmup f…
unbracketed f39719a
Remove section about env vars since those are in the .env file now #31
unbracketed 48f8213
Remove the temporary quickstart instructions #31
unbracketed f76a8de
Update to use STORAGE_URL for consistency
unbracketed 39b0fa4
Manual merge with master
unbracketed 822ce9a
Use config value for REDIS_PLUGIN_QUEUE_URL; fixes #78
unbracketed a6e202f
Remove django-dotenv
unbracketed baad5ba
Updates DATABASE_URL to STORAGE_URL
unbracketed 9f918c3
Update getting started docs to cover manual refresh action
unbracketed 1764e10
[WIP] start updating docs to explain managing environment and services
unbracketed 2b7feb8
Update instruction to be clear about reloading config
unbracketed 43f19a7
Finish up docs about running services and django commands
unbracketed 4896bd9
Manual merge with master
unbracketed 78ef780
Minor update to description of botbot-war
unbracketed eb50737
Adds architecture diagram to developer docs
unbracketed 07c87e8
Minor adjustment to add channel step
unbracketed File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,23 @@ | ||
| # Required | ||
| SECRET_KEY=supersecretkeyhere | ||
| WEB_PORT=8000 | ||
| EMAIL_BACKEND='django.core.mail.backends.console.EmailBackend' | ||
| GOPATH=$VIRTUAL_ENV | ||
| WEB_SECRET_KEY=somerandomstring | ||
| STORAGE_URL=postgres://user:pass@localhost:5432/botbot | ||
| REDIS_PLUGIN_STORAGE_URL=redis://localhost:6379/0 | ||
| REDIS_PLUGIN_QUEUE_URL=redis://localhost:6379/1 | ||
| REDIS_SSEQUEUE_URL=redis://localhost:6379/2 | ||
| SSE_ENDPOINT_URL=http://localhost:3000/ | ||
| SSE_HOST=localhost:3000 | ||
|
|
||
| # Optional | ||
| # MEMCACHE_URL=127.0.0.1:11211 | ||
| # STATIC_ROOT=/var/www/botbot/static | ||
| # MEDIA_ROOT=/var/www/botbot/uploads | ||
| # DEBUG=True | ||
| # SMTP_URL=smtp://user:pass@host:port | ||
| # SMTP_TLS=True | ||
| # ALLOWED_HOSTS=host1,host2 | ||
| # INCLUDE_DJANGO_ADMIN=False | ||
| # EXCLUDE_NICKS=nick1,nick2 |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#botwaris sort of an official test bed channel for bots. Doesn't really matter either way, just thought I'd mention it.