Commit 87000e3b1d9f58b2ef0e9013795da9f6ed81d898
1 parent
538f52d1
Exists in
master
and in
39 other branches
Make initial config work out of the box for development
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
colab/management/initconfig.py
... | ... | @@ -28,13 +28,15 @@ EMAIL_SUBJECT_PREFIX: '[colab]' |
28 | 28 | |
29 | 29 | SECRET_KEY: '{secret_key}' |
30 | 30 | |
31 | -SITE_URL: 'http://www.example.com/' | |
31 | +SITE_URL: 'http://localhost:8000/' | |
32 | 32 | BROWSERID_AUDIENCES: |
33 | + - http://localhost:8000 | |
33 | 34 | - http://example.com |
34 | 35 | - https://example.org |
35 | 36 | - http://example.net |
36 | 37 | |
37 | 38 | ALLOWED_HOSTS: |
39 | + - localhost | |
38 | 40 | - example.com |
39 | 41 | - example.org |
40 | 42 | - example.net | ... | ... |