-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.env
More file actions
93 lines (73 loc) · 2.34 KB
/
Copy pathproject.env
File metadata and controls
93 lines (73 loc) · 2.34 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# Put environment variables that hold sensitive data such as passwords here.
# NOTE: This file will not be placed under version control.
# APP_NAME=Simple Flask App
SECRET_KEY=set_here_secret
# Database
# Database details for postgres container
POSTGRES_USER=postgres
POSTGRES_PASSWORD=passwd
POSTGRES_DB=db
LOCAL_DB_PORT=15432
# Database URL to use
DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@db:5432/${POSTGRES_DB}
DEVEL_DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@127.0.0.1:${LOCAL_DB_PORT}/${POSTGRES_DB}
# API app
LOCAL_API_PORT=8002
# Super admin
ADMIN_USERNAME=admin
ADMIN_EMAIL=simple2b.info@gmail.com
ADMIN_PASSWORD=set_here_secret
ADMIN_FIRST_NAME=Admin
ADMIN_LAST_NAME=Admin
# API
JWT_SECRET=secret
ACCESS_TOKEN_EXPIRE_MINUTES=1440
# S3 Bucket
AWS_ACCESS_KEY=AKIATESTSECRET
AWS_SECRET_KEY=test/secretAwsKey23111
AWS_REGION="eu-north-1" #example
AWS_S3_BUCKET_NAME=my-project
AWS_S3_BUCKET_URL=https://${AWS_S3_BUCKET_NAME}.s3.amazonaws.com/
# email configuration (Amazon SES)
MAIL_USERNAME=secret
MAIL_DEFAULT_SENDER=sender@mail.com
MAIL_PASSWORD=secret
MAIL_SERVER=
MAIL_SUBJECT="Email Verification"
MAIL_SUBJECT_CHANGE_PASSWORD="Change Password"
MAIL_BODY_TEXT="Please verify your email address by clicking the link below:"
CHARSET="UTF-8"
REDIRECT_URL=http://127.0.0.1:3000
REDIRECT_ROUTER_VERIFY_EMAIL=/auth/verify-email
REDIRECT_ROUTER_CHANGE_PASSWORD=/auth/change-password
REDIRECT_ROUTER_FORGOT_PASSWORD=/auth/forgot-password
WEB_SERVICE_NAME=
# Stripe
STRIPE_SECRET_KEY="sk_secret_key_here"
STRIPE_PUBLIC_KEY="pk_secret_key_here"
# webhook signing secret
STRIPE_WEBHOOK_KEY="whsec_secret_key_here"
# product's price for stripe subscription
STRIPE_PRICE_STARTER_ID="price_..."
STRIPE_PRICE_PLUS_ID="price_..."
STRIPE_PRICE_PRO_ID="price_..."
STRIPE_SUBSCRIPTION_TRIAL_PERIOD_DAYS=14
# GoDaddy
MAIN_DOMAIN=propertyroster.com
# https://api.ote-godaddy.com - for testing
# https://api.godaddy.com - for production
GODADDY_API_URL=https://api.ote-godaddy.com/v1
GODADDY_API_KEY=secret_key_here
GODADDY_API_SECRET=secret_key
GODADDY_IP_ADDRESS=00.000.000.000
GO_DADDY_TTL=600
RECORD_TYPE=A
# days before the next update
DAYS_BEFORE_UPDATE=3
# maximum number of products for subscription
MAX_PRODUCTS=3
MAX_ITEMS_TRIALING=6
MAX_ACTIVE_ITEMS_TRIALING=3
# file_report_path
REPORTS_DIR=reports/
STORES_REPORT_FILE=stores_report.csv