forked from nikhilb2/simple_invoicing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (29 loc) · 1.27 KB
/
.env.example
File metadata and controls
33 lines (29 loc) · 1.27 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
# Root directory .env.example
# Copy to .env and update values for your local setup
# ============================================================================
# FRONTEND VARIABLES
# ============================================================================
FRONTEND_PORT=5173
VITE_API_BASE_URL=http://localhost:8000/api
VITE_APP_NAME=Simple accounting
VITE_LOG_LEVEL=debug
# ============================================================================
# BACKEND VARIABLES
# ============================================================================
BACKEND_PORT=8000
DATABASE_URL=postgresql://simple_user:simple_password@localhost:5432/simple_invoicing
SECRET_KEY=dev-secret-key-change-in-production
ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=30
DEBUG=true
# ============================================================================
# DATABASE VARIABLES
# ============================================================================
POSTGRES_USER=simple_user
POSTGRES_PASSWORD=simple_password
POSTGRES_DB=simple_invoicing
POSTGRES_PORT=5432
# ============================================================================
# DOCKER COMPOSE VARIABLES (for production)
# ============================================================================
COMPOSE_PROJECT_NAME=simple_invoicing