Skip to content

Commit 20536db

Browse files
committed
Added env example
1 parent 7881994 commit 20536db

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

env-example.txt

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
"""
2+
This is a .env example file of this project, User can setup their own and make app function by filling the credentials, keys etc.
3+
make sure you are using .env file.
4+
"""
5+
6+
7+
# Environment variables for the application Database
8+
DB_NAME=DATABASE_NAME
9+
DB_USER=DATABASE_USERNAME
10+
DB_PASSWORD=DATABASE_PASSWORD
11+
DB_HOST=localhost
12+
DB_PORT=5432
13+
14+
# Stripe Integration Keys
15+
STRIPE_SECRET_KEY= xxxxxxx
16+
STRIPE_WEBHOOK_SECRET = xxxx
17+
18+
19+
#Esewa Integration keys
20+
ESEWA_BASE = "https://api.esewa.com.np"
21+
ESEWA_CLIENT_SECRET = "<base64_client_secret>"
22+
ESEWA_USERNAME = "<your_username>"
23+
ESEWA_PASSWORD = "<base64_password>"
24+
25+
26+
# Coludninary Integration Keys
27+
CLOUDINARY_CLOUD_NAME = xxxxx
28+
CLOUDINARY_API_KEY = xxxxxxxx
29+
CLOUDINARY_API_SECRET = xxxxxxxxxxx
30+

0 commit comments

Comments
 (0)