neo-todo-api/backend/development.env
minhtrannhat 69debdb213
Feat(API): PostgreSQL database setup
- Fix enviroment variables
- Fix the ping route for API
- Added database connection for future testing
2022-12-14 21:35:00 -05:00

9 lines
262 B
Bash

TODO_BASE_URL="localhost:5050"
TODO_DEBUG=true
TODO_SECRET_KEY="secret key"
TODO_QUART_DB_DATABASE_URL="postgresql://todo:todo@0.0.0.0:5432/todo"
# disable for when we not using HTTPS
TODO_QUART_AUTH_COOKIE_SECURE=false
TODO_QUART_AUTH_COOKIE_SAMESITE="Strict"