mirror of
https://github.com/MODSetter/SurfSense.git
synced 2025-09-02 18:49:09 +00:00
10 lines
No EOL
286 B
Python
10 lines
No EOL
286 B
Python
#POSTGRES DB TO TRACK USERS
|
|
POSTGRES_DATABASE_URL = "postgresql+psycopg2://postgres:postgres@localhost:5432/surfsense"
|
|
|
|
# API KEY TO VERIFY
|
|
API_SECRET_KEY = "surfsense"
|
|
|
|
# Your JWT secret and algorithm
|
|
SECRET_KEY = "your_secret_key"
|
|
ALGORITHM = "HS256"
|
|
ACCESS_TOKEN_EXPIRE_MINUTES = 720 |