Skip to content

Commit 05c00e6

Browse files
authored
Merge pull request #2 from spider-gazelle/feat/v2
feat: add user groups, password reset, email notifications, API keys,…
2 parents 94fc985 + 035d64e commit 05c00e6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+8828
-743
lines changed

.env.example

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,19 @@ SG_SERVER_HOST=127.0.0.1
44
SG_SERVER_PORT=3000
55
SG_PROCESS_COUNT=1
66

7+
# Public files path (optional)
8+
# PUBLIC_WWW_PATH=./www
9+
710
# Database
811
PG_DATABASE_URL=postgresql://postgres:password@localhost:5432/development
912

1013
# Session Security (CHANGE IN PRODUCTION!)
1114
COOKIE_SESSION_KEY=_spider_gazelle_
1215
COOKIE_SESSION_SECRET=4f74c0b358d5bab4000dd3c75465dc2c
1316

17+
# Application URL (used for email links)
18+
APP_BASE_URL=http://localhost:3000
19+
1420
# OAuth Providers (Optional)
1521
# Get credentials from: https://console.developers.google.com
1622
GOOGLE_CLIENT_ID=
@@ -24,3 +30,14 @@ MICROSOFT_CLIENT_SECRET=
2430
# - 'organizations' for work/school accounts only
2531
# - 'consumers' for personal Microsoft accounts only
2632
# MICROSOFT_TENANT_ID=common
33+
34+
# SMTP Configuration (Required for email features)
35+
SMTP_HOST=localhost
36+
SMTP_PORT=1025
37+
SMTP_FROM_EMAIL=noreply@example.com
38+
SMTP_FROM_NAME="My App"
39+
# TLS mode: starttls (default), smtps, or none
40+
SMTP_TLS=none
41+
# Auth credentials (required when TLS is enabled)
42+
SMTP_USERNAME=
43+
SMTP_PASSWORD=

0 commit comments

Comments
 (0)