Skip to content
This repository was archived by the owner on Jun 28, 2025. It is now read-only.

Commit f61f67a

Browse files
committed
refactor(root) => Put environment variables into correct file
1 parent 060d4da commit f61f67a

File tree

2 files changed

+17
-16
lines changed

2 files changed

+17
-16
lines changed

.env.example

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,4 @@ DATABASE_CLIENT=mysql2
44
DATABASE_USERNAME=vim
55
DATABASE_PASSWORD=super-secret
66
DATABASE_PORT=3306
7-
DATABASE_SSL=false
8-
9-
WEB_DATABASE_NAME=vim
10-
NEXT_PRIVATE_STANDALONE=true
11-
NEXTAUTH_SECRET=testsecret
12-
13-
CMS_DATABASE_NAME=vim_cms
14-
CMS_HOST=0.0.0.0
15-
CMS_PORT=1337
16-
CMS_APP_KEYS=testkey1,testkey2
17-
CMS_API_TOKEN_SALT=testtoken
18-
CMS_ADMIN_JWT_SECRET=testsecret
19-
CMS_JWT_SECRET=testsecret
20-
CMS_TRANSFER_TOKEN_SALT=testtoken
21-
CMS_DISABLE_UPDATE_NOTIFICATION=false
22-
CMS_TELEMETRY_DISABLED=true
7+
DATABASE_SSL=false

web/.env.example

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
NODE_ENV=development
2+
3+
WEB_DATABASE_NAME=vim
4+
NEXT_PRIVATE_STANDALONE=true
5+
NEXTAUTH_SECRET=testsecret
6+
7+
CMS_DATABASE_NAME=vim_cms
8+
CMS_HOST=0.0.0.0
9+
CMS_PORT=1337
10+
CMS_APP_KEYS=testkey1,testkey2
11+
CMS_API_TOKEN_SALT=testtoken
12+
CMS_ADMIN_JWT_SECRET=testsecret
13+
CMS_JWT_SECRET=testsecret
14+
CMS_TRANSFER_TOKEN_SALT=testtoken
15+
CMS_DISABLE_UPDATE_NOTIFICATION=false
16+
CMS_TELEMETRY_DISABLED=true

0 commit comments

Comments
 (0)