-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (27 loc) · 736 Bytes
/
Copy path.env.example
File metadata and controls
33 lines (27 loc) · 736 Bytes
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
# Database
POSTGRES_HOST=postgres
POSTGRES_PORT=5432
POSTGRES_USER=pablo
POSTGRES_PASSWORD=changeme_strong_password
POSTGRES_DB=pablo_menu
# JWT
JWT_SECRET=changeme_very_long_random_secret_min_32_chars
JWT_EXPIRES_IN=8h
# TOTP 2FA (generate with: openssl rand -hex 32)
TOTP_ENCRYPTION_KEY=changeme_64_char_hex_string_for_aes256_key_generation_here
# Admin
ADMIN_EMAIL=admin@pablo.com
ADMIN_PASSWORD=changeme_strong_password
# MinIO
MINIO_ENDPOINT=minio
MINIO_PORT=9000
MINIO_ACCESS_KEY=minioadmin
MINIO_SECRET_KEY=changeme_minio_secret
MINIO_BUCKET=pablo-menu
MINIO_PUBLIC_URL=http://localhost:9000
# Backend
BACKEND_PORT=3000
NODE_ENV=production
# Frontend
VITE_API_URL=http://localhost:3000
VITE_MINIO_URL=http://localhost:9000