forked from Ondsel-Development/Ondsel-Server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathenv.example
69 lines (64 loc) · 1.71 KB
/
env.example
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
#########################
######## MongoDB ########
#########################
# Set to any port number to expose MongoDB on that port
EXPOSE_DB_PORT=27018
#########################
######## Backend ########
#########################
# Host name where backend service is accessible
HOSTNAME=localhost
# Port where backend service is accessible
PORT=3030
# URL where frontend is accessible
FRONTEND_URL=http://localhost:3000
# SMTP server hostname for email sending
SMTP_HOST=
# SMTP port (default: 465 for SSL)
SMTP_PORT=465
# SMTP username
SMTP_USER=
# SMTP password
SMTP_PASS=
# Default admin email (default: [email protected])
DEFAULT_ADMIN_EMAIL=
# Default admin username (default: admin)
DEFAULT_ADMIN_USERNAME=
# Default admin password (default: [email protected])
DEFAULT_ADMIN_PASSWORD=
# Default admin name (default: Ondsel Admin)
DEFAULT_ADMIN_NAME=
#########################
########## AWS ##########
#########################
# AWS access key
AWS_ACCESS_KEY_ID=
# AWS secret key
AWS_SECRET_ACCESS_KEY=
# AWS S3 bucket name for client models
AWS_CLIENT_MODELS_BUCKET=
# AWS region (e.g., us-east-1)
AWS_REGION=
#########################
######## Frontend #######
#########################
# Backend API URL
VITE_APP_API_URL=http://localhost:3030/
# Matomo analytics URL
VITE_MATOMO_URL=http://localhost:7000
# Matomo site ID
VITE_MATOMO_SITE=1
#########################
####### FC Worker #######
#########################
# URL where backend is accessible
BACKEND_URL=http://localhost:3030
#########################
######## Matomo ##########
#########################
# Matomo username (default: admin)
MATOMO_USERNAME=
# Matomo password (default: [email protected])
MATOMO_PASSWORD=
# Matomo email (default: [email protected])
MATOMO_EMAIL=