1 parent 4c71a6e commit 138ec6eCopy full SHA for 138ec6e
1 file changed
.env.example
@@ -1,13 +1,14 @@
1
# PostgreSQL conf
2
-POSTGRES_PASSWORD=mysecretpass
3
-POSTGRES_USER=my_super_user
4
-POSTGRES_DB=bootcamp
5
-DATABASE_URL=postgresql://my_super_user:mysecretpass@127.0.0.1:5432/bootcamp
+# POSTGRES_PASSWORD=mysecretpass
+# POSTGRES_USER=my_super_user
+# POSTGRES_DB=bootcamp
+# DATABASE_URL=postgresql://my_super_user:mysecretpass@127.0.0.1:5432/bootcamp
6
7
# Main environmental variables
8
DEBUG=True
9
SECRET_KEY=s3cr3t_key
10
-# Different URL to have sqlite example
11
-# DATABASE_URL=sqlite:////path/to/workspace/dir/db.sqlite3
12
ALLOWED_HOSTS=*
13
-REDIS_URL=redis://redis_ip_address:port
+# URL to have SQLite example and to pass TravisCI
+DATABASE_URL=sqlite:////tmp/db.sqlite3
+# URL for Redis
14
+# REDIS_URL=redis://redis_ip_address:port
0 commit comments