neo-neo-todo/backend/testing.env
minhtrannhat 4a72d88ba2
feat(api): login and authentication routes
- Remove fastapi-limiter, we will rate limit at load balancer level as
it is too hard to get fastapi-limiter to play nice with pytest.
- Wrote technical writeups on how the login flow and check for user
authentication status work
2024-03-23 14:53:33 -04:00

9 lines
320 B
Bash

UVICORN_PORT="5050"
TODO_DEBUG=true
TODO_SECRET_KEY="e9e53155ef8eda837f3047c949ea39cdb591fa0dc3a27c3a5858481af828d812"
TODO_TESTING=true
TODO_DB_DATABASE_URL="postgresql://todo_test:todo@0.0.0.0:5432/todo_test"
TODO_SALT="o12iu3h1po2j3hklajshdfasdli2u808hhhh889009"
ALGORITHM = "HS256"
ACCESS_TOKEN_EXPIRE_MINUTES = 30