-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.env.sample
30 lines (24 loc) · 1.12 KB
/
.env.sample
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
# Environment similar to NODE_ENV.
# Analytics and public resources are enabled only in "production"
# How to use: set value to "production" to get fully functional application.
NEXT_PUBLIC_ENV = development
# NEXT_PUBLIC_ENV = preview
# NEXT_PUBLIC_ENV = production
# Enables additional debug features, no additional debug information if the variable is not set
# How to use: set value to "true" to get more debugging information, but don't do it on production.
NEXT_PUBLIC_DEBUG = true
# Public URL of the application/website.
# How to use: Do not set any value until you need custom domain for your application.
# NEXT_PUBLIC_PUBLIC_URL = https://xxx.com
# NEXT_PUBLIC_PUBLIC_URL = https://xxx.web.app
NEXT_PUBLIC_PUBLIC_URL = http://localhost:3000
# API/Backend basic URL
NEXT_PUBLIC_API_URL = http://localhost:5000
# NEXT_PUBLIC_API_URL = https://dev-api.domain.com
# NEXT_PUBLIC_API_URL = https://api.domain.com
# EmailJS configuration for contact form
NEXT_PUBLIC_EMAILJS_KEY = user-xxxx
# Analytics and Advertising
NEXT_PUBLIC_GA_ID = G-...
NEXT_PUBLIC_AMPLITUDE_API_KEY = 69abf7...
NEXT_PUBLIC_ADSENSE_CLIENT_ID = pub-12345...