File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,12 @@ GRAPH_DB_USER=neo4j
1010GRAPH_DB_PASSWORD = neoSecureChain
1111
1212# Secrets for JWT
13- ALGORITHM = your_preferred_algorithm # e.g., HS256
14- JWT_ACCESS_SECRET_KEY = your_access_secret_key
13+ SECURE = False # Set to True in production
14+ ALGORITHM = ' your_preferred_algorithm' # e.g., 'HS256'
15+ ACCESS_TOKEN_EXPIRE_MINUTES = ' access_token_expire_minutes'
16+ REFRESH_TOKEN_EXPIRE_DAYS = ' refresh_token_expire_days'
17+ JWT_ACCESS_SECRET_KEY = ' your_access_secret_key'
18+ JWT_REFRESH_SECRET_KEY = ' your_refresh_secret_key'
1519
1620# Api key for github services
1721GITHUB_GRAPHQL_API_KEY = your_github_api_key_here
@@ -25,4 +29,4 @@ GIT_PYTHON_REFRESH=select_your option
2529GIT_CONFIG_SYSTEM = /dev/null
2630GIT_CONFIG_GLOBAL = /dev/null
2731GIT_LFS_SKIP_SMUDGE = 1
28- GIT_TEMPLATE_DIR =
32+ GIT_TEMPLATE_DIR =
You can’t perform that action at this time.
0 commit comments