forked from LeeCampbell/MarsMissionFund
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (30 loc) · 985 Bytes
/
.env.example
File metadata and controls
36 lines (30 loc) · 985 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
29
30
31
32
33
34
35
36
# ============================================================
# Mars Mission Fund - Local Development Environment Variables
# ============================================================
# Copy this file to .env and adjust values as needed.
# .env is never committed (in .gitignore).
# ============================================================
# Database
DATABASE_URL=postgres://mmf:mmf@localhost:5432/mmf_dev?sslmode=disable
POSTGRES_USER=mmf
POSTGRES_PASSWORD=mmf
POSTGRES_DB=mmf_dev
# Backend
PORT=3001
NODE_ENV=development
LOG_LEVEL=debug
# Frontend
VITE_API_URL=http://localhost:3001
# Authentication (Clerk)
CLERK_PUBLISHABLE_KEY=pk_test_placeholder
CLERK_SECRET_KEY=sk_test_placeholder
CLERK_WEBHOOK_SIGNING_SECRET=whsec_placeholder
VITE_CLERK_PUBLISHABLE_KEY=pk_test_placeholder
# Mock adapters (all mocked by default for local dev)
MOCK_PAYMENTS=true
MOCK_KYC=true
MOCK_EMAIL=true
MOCK_AUTH=true
# Feature flags (future - PostHog)
# POSTHOG_API_KEY=
# POSTHOG_HOST=