Skip to content

Commit 7aadb16

Browse files
committed
add example environmental variables
1 parent 5f6b35d commit 7aadb16

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.env.example

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
NODE_ENV=development
2+
PORT=8000
3+
TAG=1.0.4
4+
5+
# Frontend
6+
VITE_API_URL=http://localhost:8000
7+
VITE_API_VERSION=v1
8+
9+
# Backend
10+
API_URL=http://localhost:8000
11+
API_VERSION=v1
12+
DATABASE_URL=postgresql://<username>:<password>@<host>:5432/<database_name>
13+
14+
# AWS Services
15+
AWS_SECRET_ACCESS_KEY=
16+
AWS_REGION=
17+
AWS_ACCESS_KEY_ID=
18+
AWS_BUCKET_NAME=
19+
AWS_S3_DIR_PATH=
20+
AWS_SIGNEDURL_EXPIRE_DURATION=600 #10 minutes
21+
22+
#PSQL
23+
POSTGRES_USER=
24+
POSTGRES_PASSWORD=
25+
POSTGRES_DB=

0 commit comments

Comments
 (0)