Commit 87000e3b1d9f58b2ef0e9013795da9f6ed81d898

Authored by Antonio Terceiro
1 parent 538f52d1

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,13 +28,15 @@ EMAIL_SUBJECT_PREFIX: '[colab]'
28 28
29 SECRET_KEY: '{secret_key}' 29 SECRET_KEY: '{secret_key}'
30 30
31 -SITE_URL: 'http://www.example.com/' 31 +SITE_URL: 'http://localhost:8000/'
32 BROWSERID_AUDIENCES: 32 BROWSERID_AUDIENCES:
  33 + - http://localhost:8000
33 - http://example.com 34 - http://example.com
34 - https://example.org 35 - https://example.org
35 - http://example.net 36 - http://example.net
36 37
37 ALLOWED_HOSTS: 38 ALLOWED_HOSTS:
  39 + - localhost
38 - example.com 40 - example.com
39 - example.org 41 - example.org
40 - example.net 42 - example.net