-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.env.example
More file actions
56 lines (41 loc) · 2.01 KB
/
.env.example
File metadata and controls
56 lines (41 loc) · 2.01 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Astrologer Studio - Environment Configuration
# Copy this file to .env and fill in your values
# =============================================================================
# DATABASE
# =============================================================================
# PostgreSQL connection string
DATABASE_URL="postgresql://user:password@localhost:5432/astrologer_studio"
# =============================================================================
# SECURITY
# =============================================================================
# Secret key for session encryption (min 32 characters)
# Generate with: openssl rand -base64 32
SESSION_SECRET=""
# =============================================================================
# EXTERNAL APIS
# =============================================================================
# Astrologer API - powers astrological calculations
# Get your key from: https://rapidapi.com/gbattaglia/api/astrologer
# Self Host: https://github.com/g-battaglia/Astrologer-API
ASTROLOGER_API_KEY=""
# GeoNames API - city/location search
# Create a free account at: https://www.geonames.org/login
GEONAMES_USERNAME=""
# =============================================================================
# APPLICATION
# =============================================================================
# Your application URL
NEXT_PUBLIC_APP_URL="http://localhost:3000"
# =============================================================================
# AI INTERPRETATIONS (Optional)
# =============================================================================
# OpenRouter API key for AI chart interpretations
# Get your key from: https://openrouter.ai/keys
OPENROUTER_API_KEY=""
# Enable AI features
NEXT_PUBLIC_ENABLE_AI_INTERPRETATION="false"
# =============================================================================
# RECAPTCHA
# =============================================================================
# For self-hosted environments, set to "true" to disable reCAPTCHA
NEXT_PUBLIC_DISABLE_RECAPTCHA=true