-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (29 loc) · 1011 Bytes
/
.env.example
File metadata and controls
36 lines (29 loc) · 1011 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
# Celestra Website Environment Variables
# Copy this file to .env.local for local development
# ====================
# Netlify Configuration
# ====================
# Email addresses for various contact purposes
# Set these in Netlify Dashboard → Site settings → Environment variables
BETA_EMAIL=beta@celestr.app
PRIVACY_EMAIL=privacy@celestr.app
SUPPORT_EMAIL=support@celestr.app
# ====================
# Analytics Configuration
# ====================
# Plausible Analytics domain
# Used for tracking website visitors
# Set to your domain (e.g., celestr.app)
PUBLIC_PLAUSIBLE_DOMAIN=celestr.app
# ====================
# Development Configuration
# ====================
# Node version (specified in netlify.toml)
# Local development should use Node 22
NODE_VERSION=22
# ====================
# Notes
# ====================
# - PUBLIC_ prefix makes variable available to client-side code
# - Variables without PUBLIC_ are server-side only
# - Update netlify.toml and Layout.astro to use these variables