-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
23 lines (22 loc) · 757 Bytes
/
.env.example
File metadata and controls
23 lines (22 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Port Configuration
PORT=3001
# PostgreSQL Configuration
# Replace with the connection string for your database
DATABASE_URL=postgresql://username:password@localhost:5432/codepatchwork
PGDATABASE=codepatchwork
PGUSER=username
PGPASSWORD=password
PGHOST=localhost
PGPORT=5432
#Firebase Configuration
VITE_FIREBASE_API_KEY=your-api-key-here
VITE_FIREBASE_APP_ID=your-app-id-here
VITE_FIREBASE_PROJECT_ID=your-project-id-here
VITE_FIREBASE_MESSAGING_SENDER_ID=your-sender-id-here
VITE_FIREBASE_AUTH_DOMAIN=your-auth-domain-here
VITE_FIREBASE_STORAGE_BUCKET=your-storage-bucket-here
VITE_FIREBASE_MEASUREMENT_ID=your-measurement-id-here
# Application Settings
NODE_ENV=development
SESSION_SECRET=your-session-secret-here
VITE_PUBLIC_URL=http://localhost:3001