-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.env.example
More file actions
37 lines (32 loc) · 1.56 KB
/
Copy path.env.example
File metadata and controls
37 lines (32 loc) · 1.56 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
# -----------------------------------------------------------------------------
# Host User & System Settings (for Rootless Docker)
# Run `id -u` and `id -g` on Linux/macOS to get these values
# -----------------------------------------------------------------------------
UID=1000
GID=1000
# -----------------------------------------------------------------------------
# Port Configurations
# -----------------------------------------------------------------------------
POSTGRES_PORT=5432
BACKEND_PORT=8000
FRONTEND_PORT=5173
# -----------------------------------------------------------------------------
# Database Configuration
# -----------------------------------------------------------------------------
POSTGRES_DB=fashio_db
POSTGRES_USER=fashio_user
POSTGRES_PASSWORD=fashio_secure_password
POSTGRES_HOST=db
# -----------------------------------------------------------------------------
# Django / Security Settings
# -----------------------------------------------------------------------------
JWT_SECRET=super-secret-jwt-key-change-in-production
# -----------------------------------------------------------------------------
# OAuth Credentials (Google & GitHub)
# -----------------------------------------------------------------------------
GOOGLE_CLIENT_ID=your-google-client-id.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=your-google-client-secret
GOOGLE_REDIRECT_URL=http://localhost:8000/api/auth/google/callback/
GITHUB_CLIENT_ID=your-github-client-id
GITHUB_CLIENT_SECRET=your-github-client-secret
GITHUB_REDIRECT_URL=http://localhost:8000/api/auth/github/callback/