-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathEXAMPLE.env
More file actions
49 lines (37 loc) · 1.5 KB
/
Copy pathEXAMPLE.env
File metadata and controls
49 lines (37 loc) · 1.5 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
APP_ENV=dev
# Database Configuration
AVORED_DATABASE_NAMESPACE=public
AVORED_DATABASE_NAME=avored_cms
AVORED_DATABASE_FOLDER_NAME=rocksdb://data/avored.db
# Security Configuration
AVORED_PASSWORD_SALT=sixty_for_charactor_long_string_goes_here
# JWT Configuration
AVORED_JWT_SECRET=sixty_for_charactor_long_string_goes_here
AVORED_JWT_EXPIRED_IN=60m
AVORED_JWT_MAXAGE=60
# Server Configuration
AVORED_HOST=127.0.0.1
AVORED_PORT=50051
# Application URLs
AVORED_BACK_END_APP_URL=http://localhost:50051
AVORED_REACT_ADMIN_APP_URL=http://localhost:3000
AVORED_REACT_FRONTEND_APP_URL=http://localhost:5173
# CORS Configuration (multiple values supported as comma separated)
AVORED_CORS_ALLOWED_APP_URL=http://localhost:3000,http://localhost:50051,http://localhost:5173
# Contact Form Configuration
AVORED_CONTACT_FROM_EMAIL=info@avored.com
AVORED_CONTACT_TO_EMAIL=admin@avored.com
AVORED_CONTACT_EMAIL_SUBJECT=Contact us message
# Logging Configuration
AVORED_LOG_DIR=public/log
AVORED_LOG_FILE=avored.log
# Security Headers Configuration
AVORED_HSTS_HEADER=max-age=31536000; includeSubDomains
AVORED_CSP_HEADER=default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; img-src 'self' data: https:; font-src 'self' data:; connect-src 'self'; frame-ancestors 'none';
#AVORED_BACK_END_APP_URL=https://api.avored.com
#AVORED_REACT_ADMIN_APP_URL=https://demo.avored.com
#AVORED_REACT_FRONTEND_APP_URL=https://avored.com
SMTP_HOST=sandbox.smtp.mailtrap.io
SMTP_USERNAME=
SMTP_PASSWORD=
SMTP_PORT=587