8 lines
260 B
Bash
8 lines
260 B
Bash
HOST=0.0.0.0
|
|
PORT=8000
|
|
#DATABASE_URL="sqlite://dev.db"
|
|
DATABASE_URL="postgresql://postgres:postgres@localhost/thoughts"
|
|
#DATABASE_URL=postgres://thoughts_user:postgres@database:5432/thoughts_db
|
|
PREFORK=0
|
|
AUTH_SECRET=your_secret_key_here
|
|
BASE_URL=http://0.0.0.0 |