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 11# For dockerized backend and database
22GRAPH_DB_URI = bolt://neo4j:7687
3- VULN_DB_URI = mongodb://mongoSecureChain:mongoSecureChain@mongodb :27017/admin
3+ VULN_DB_URI = mongodb://mongoSecureChain:mongoSecureChain@mongo :27017/admin
44DOCS_URL = /docs # Comment this on production
55# Allow all origins for services (for development purposes)
66SERVICES_ALLOWED_ORIGINS = ["*"]
@@ -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
You can’t perform that action at this time.
0 commit comments