-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.template
More file actions
36 lines (31 loc) · 1.31 KB
/
.env.template
File metadata and controls
36 lines (31 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# For dockerized backend and database
GRAPH_DB_URI=bolt://neo4j:7687
VULN_DB_URI=mongodb://mongoSecureChain:mongoSecureChain@mongo:27017/admin
DOCS_URL=/docs # Comment this on production
SERVICES_ALLOWED_ORIGINS=["http://securechain-gateway:8000"]
GATEWAY_ALLOWED_ORIGINS=["http://securechain-mcp:8000"]
BACKEND_URL=http://securechain-gateway:8000
# Databases settings
GRAPH_DB_USER=neo4j
GRAPH_DB_PASSWORD=neoSecureChain
# Secrets for JWT
SECURE_COOKIES=False # Set to True in production
ALGORITHM=your_preferred_algorithm # e.g., HS256
ACCESS_TOKEN_EXPIRE_MINUTES=access_token_expire_minutes
REFRESH_TOKEN_EXPIRE_DAYS=refresh_token_expire_days
JWT_ACCESS_SECRET_KEY=your_access_secret_key
JWT_REFRESH_SECRET_KEY=your_refresh_secret_key
# Api key for github services
GITHUB_GRAPHQL_API_KEY=add_your_api_key
# Git python environments
# Git python refresh required env variable. Use one of the following values:
# - quiet|q|silence|s|silent|none|n|0: for no message or exception
# - warn|w|warning|log|l|1: for a warning message (logging level CRITICAL, displayed by default)
# - error|e|exception|raise|r|2: for a raised exception
GIT_PYTHON_REFRESH=select_your option
GIT_CONFIG_SYSTEM=/dev/null
GIT_CONFIG_GLOBAL=/dev/null
GIT_LFS_SKIP_SMUDGE=1
GIT_TEMPLATE_DIR=
# MCP enviroment variables
REQUEST_TIMEOUT=request_timeout_seconds