-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.dev
50 lines (38 loc) · 1.46 KB
/
.env.dev
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# App Variables to use in templates
APP_NAME=Donation App
APP_FAVICON_URL=http://localhost/favicon.ico
# this will be used in payment success and fail urls to redirect user from payment page to cart page
APP_PAYMENT_RESPONSE_URL=https://localhost:3000/cart
DEBUG=1
SECRET_KEY=verySECRETk3y
ALLOWED_HOSTS=127.0.0.1:8000 127.0.0.1 localhost localhost:8000
CORS_ALLOWED_ORIGINS=http://localhost:8000 http://127.0.0.1:8000 http://localhost:3000 http://127.0.0.1:3000
CSRF_TRUSTED_ORIGINS=http://localhost:8000 http://127.0.0.1:8000 http://localhost:3000 http://127.0.0.1:3000
# Options: DENY ALLOWALL SAMEORIGIN
X_FRAME_OPTIONS=ALLOWALL
SECURE_SSL_REDIRECT=False
SESSION_COOKIE_SECURE=True
CSRF_COOKIE_SECURE=True
# DB CONF
DB_NAME=postgres
DB_HOST=127.0.0.1
DB_PORT=5432
DB_USER=postgres
DB_PASSWORD=mysecretpassword
# KUVEYTTURK CONF
KUVEYTTURK_STORE_NO=57902
KUVEYTTURK_CUSTOMER_NO=97228291
KUVEYTTURK_USERNAME=TEPKVT2021
KUVEYTTURK_PASSWORD=api123
KUVEYTTURK_OK_URL=http://127.0.0.1:8000/api/payment/payment-success/
KUVEYTTURK_FAIL_URL=http://127.0.0.1:8000/api/payment/payment-fail/
KUVEYTTURK_PAYMENT_REQUEST_URL=https://boatest.kuveytturk.com.tr/boa.virtualpos.services/Home/ThreeDModelPayGate
KUVEYTTURK_PAYMENT_APPROVE_URL=https://boatest.kuveytturk.com.tr/boa.virtualpos.services/Home/ThreeDModelProvisionGate
# JWT CONF
TOKEN_LIFETIME_HOURS=5
# EMAIL
EMAIL_HOST=smtp.gmail.com
EMAIL_PORT=587
EMAIL_HOST_USER=HASTOBECHANGED
EMAIL_HOST_PASSWORD=HASTOBECHANGED
EMAIL_USE_TLS=True