- 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
8 lines
300 B
Bash
8 lines
300 B
Bash
ALGORITHM = "HS256"
|
|
ACCESS_TOKEN_EXPIRE_MINUTES = 30
|
|
UVICORN_PORT="5050"
|
|
TODO_DEBUG=true
|
|
TODO_SECRET_KEY="e9e53155ef8eda837f3047c949ea39cdb591fa0dc3a27c3a5858481af828d812"
|
|
TODO_SALT="o12iu3h1po2j3hklajshdfasdli2u808hhhh889009"
|
|
TODO_DB_DATABASE_URL="postgresql://todo_dev:todo@0.0.0.0:5432/todo_dev"
|