Skip to content

Commit 6abe2f8

Browse files
committed
chore: prepare release
1 parent 0702cec commit 6abe2f8

File tree

2 files changed

+21
-21
lines changed

2 files changed

+21
-21
lines changed

.env.example

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
# For dockerized frontend, backend and database
2-
GRAPH_DB_URI='bolt://neo4j:7687'
3-
VULN_DB_URI='mongodb://mongoSecureChain:mongoSecureChain@mongodb:27017/admin'
4-
DOCS_URL='/docs' # Comment this on production
5-
SERVICES_ALLOWED_ORIGINS='["http://securechain-gateway:8000"]'
6-
GATEWAY_ALLOWED_ORIGINS='["http://securechain-frontend"]'
2+
GRAPH_DB_URI=bolt://neo4j:7687
3+
VULN_DB_URI=mongodb://mongoSecureChain:mongoSecureChain@mongodb:27017/admin
4+
DOCS_URL=/docs # Comment this on production
5+
SERVICES_ALLOWED_ORIGINS=["http://securechain-gateway:8000"]
6+
GATEWAY_ALLOWED_ORIGINS=["http://securechain-frontend"]
77
BACKEND_URL=http://securechain-gateway:8000
8-
NODE_ENV=development # Change to 'production' for production builds
8+
NODE_ENV=development # Change to production for production builds
99

1010
# Databases settings
11-
GRAPH_DB_USER='neo4j'
12-
GRAPH_DB_PASSWORD='neoSecureChain'
13-
VULN_DB_USER='mongoSecureChain'
14-
VULN_DB_PASSWORD='mongoSecureChain'
11+
GRAPH_DB_USER=neo4j
12+
GRAPH_DB_PASSWORD=neoSecureChain
13+
VULN_DB_USER=mongoSecureChain
14+
VULN_DB_PASSWORD=mongoSecureChain
1515

1616
# Secrets for JWT
1717
SECURE_COOKIES=False # Set to True in production
18-
ALGORITHM='your_preferred_algorithm' # e.g., 'HS256'
19-
ACCESS_TOKEN_EXPIRE_MINUTES='access_token_expire_minutes'
20-
REFRESH_TOKEN_EXPIRE_DAYS='refresh_token_expire_days'
21-
JWT_ACCESS_SECRET_KEY='your_access_secret_key'
22-
JWT_REFRESH_SECRET_KEY='your_refresh_secret_key'
18+
ALGORITHM=your_preferred_algorithm # e.g., HS256
19+
ACCESS_TOKEN_EXPIRE_MINUTES=access_token_expire_minutes
20+
REFRESH_TOKEN_EXPIRE_DAYS=refresh_token_expire_days
21+
JWT_ACCESS_SECRET_KEY=your_access_secret_key
22+
JWT_REFRESH_SECRET_KEY=your_refresh_secret_key
2323

2424
# Api key for github services
25-
GITHUB_GRAPHQL_API_KEY='add_your_api_key'
25+
GITHUB_GRAPHQL_API_KEY=add_your_api_key
2626

2727
# Dockerized Redis Configuration (for Dagster integration)
2828
REDIS_HOST=redis
@@ -37,8 +37,8 @@ REDIS_CONSUMER=package-consumer
3737
# - quiet|q|silence|s|silent|none|n|0: for no message or exception
3838
# - warn|w|warning|log|l|1: for a warning message (logging level CRITICAL, displayed by default)
3939
# - error|e|exception|raise|r|2: for a raised exception
40-
GIT_PYTHON_REFRESH='select_your option'
41-
GIT_CONFIG_SYSTEM='/dev/null'
42-
GIT_CONFIG_GLOBAL='/dev/null'
40+
GIT_PYTHON_REFRESH=select_your option
41+
GIT_CONFIG_SYSTEM=/dev/null
42+
GIT_CONFIG_GLOBAL=/dev/null
4343
GIT_LFS_SKIP_SMUDGE=1
44-
GIT_TEMPLATE_DIR=''
44+
GIT_TEMPLATE_DIR=

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "securechain-frontend",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"private": true,
55
"scripts": {
66
"build": "next build",

0 commit comments

Comments
 (0)