-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
44 lines (39 loc) · 1.31 KB
/
.env.example
File metadata and controls
44 lines (39 loc) · 1.31 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
# ==========================================
# DigiVerse - Environment Variables
# ==========================================
# Copie este arquivo para .env e ajuste os valores
# cp .env.example .env
# ==========================================
# ==========================================
# Database Configuration
# ==========================================
DB_HOST=localhost
DB_PORT=5432
DB_USER=postgres
DB_PASSWORD=password
DB_NAME=digiverse_db
# ==========================================
# Redis Configuration
# ==========================================
REDIS_PORT=6379
REDIS_PASSWORD=
# ==========================================
# Backend Configuration
# ==========================================
PORT=3000
URL_APP=http://localhost
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production
# ==========================================
# Frontend Configuration
# ==========================================
WEB_PORT=80
VITE_API_URL=http://localhost:3000
# ==========================================
# Production Settings (Opcional)
# ==========================================
# Descomente e configure para produção
# NODE_ENV=production
# DB_HOST=seu-host-producao.com
# REDIS_URL=redis://seu-redis-producao.com:6379
# JWT_SECRET=super-secret-key-com-pelo-menos-32-caracteres
# VITE_API_URL=https://api.seu-dominio.com