28 lines
1.3 KiB
Bash
28 lines
1.3 KiB
Bash
# 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 (the Baya server)
|
|
NEXT_PUBLIC_API_URL = https://localhost:5002
|
|
# NEXT_PUBLIC_API_URL = https://dev-api.domain.com
|
|
# NEXT_PUBLIC_API_URL = https://api.domain.com
|
|
|
|
# Neshan **web** key (client-embeddable maps/search/reverse-geocode) — get one from
|
|
# https://platform.neshan.org (a separate key from the server's NeshanGeocoder key, which lives in
|
|
# server appsettings/user-secrets, never here). Leave unset to keep the address map-pin picker's
|
|
# bounded-canvas grid fallback (dev/CI/jsdom all work without a key).
|
|
# NEXT_PUBLIC_NESHAN_KEY = your-neshan-web-key |