-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.env.example
More file actions
28 lines (23 loc) · 820 Bytes
/
Copy path.env.example
File metadata and controls
28 lines (23 loc) · 820 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
HOST=0.0.0.0
PORT=3000
# PostgreSQL Configuration (PostgreSQL 16)
POSTGRES_USER=elephant_admin
POSTGRES_PASSWORD=SuperSecureAndComplexPassword2026!
POSTGRES_DB=elephant_messenger
POSTGRES_PORT=42359
POSTGRES_HOST=127.0.0.1
# JWT
JWT_SECRET=my_super_long_and_secure_secret_key
# Cryptography Parameters
ARGON_MEMORY=65536
ARGON_ITERATIONS=3
ARGON_PARALLELISM=2
# OAuth2 Authentication Providers
# Google Developer Console Credentials
GOOGLE_CLIENT_ID=your_google_client_id.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=GOCSPX-your_google_client_secret
GOOGLE_REDIRECT_URL=http://localhost:3000/api/auth/google/callback
# GitHub Developer Settings Credentials
GITHUB_CLIENT_ID=ov-your_github_client_id
GITHUB_CLIENT_SECRET=your_github_client_secret
GITHUB_REDIRECT_URL=http://localhost:3000/api/auth/github/callback