-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.env.production.example
65 lines (58 loc) · 2.88 KB
/
.env.production.example
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
57
58
59
60
61
62
63
64
65
# Make a local copy `.env.production.example` as `.env.production` in your project root
# This will have environment variables for production environment
# Optionally use `.env.production.local` to override environment variables in `.env.production` (like API keys)
###########################################################################
# Application Properties (Console)
###########################################################################
VERCEL_ENV=production
NODE_ENV=production
NHOST_SUBDOMAIN=swzucovdccjouwebopwb
NHOST_REGION=us-west-2
PUBLIC_NHOST_SUBDOMAIN=${NHOST_SUBDOMAIN}
PUBLIC_NHOST_REGION=${NHOST_REGION}
# nhsot SDK
# comment this block if you are using nhost CLI.
# nhost SDK use `PUBLIC_NHOST_SUBDOMAIN` and `PUBLIC_NHOST_REGION` to infer below variables
NHOST_HASURA_URL= https://${NHOST_SUBDOMAIN}.hasura.${NHOST_REGION}.nhost.run/console
NHOST_AUTH_URL=https://${NHOST_SUBDOMAIN}.auth.${NHOST_REGION}.nhost.run/v1
NHOST_GRAPHQL_URL=https://${NHOST_SUBDOMAIN}.hasura.${NHOST_REGION}.nhost.run/v1/graphql
NHOST_STORAGE_URL=https://${NHOST_SUBDOMAIN}.storage.${NHOST_REGION}.nhost.run/v1
NHOST_FUNCTIONS_URL=https://${NHOST_SUBDOMAIN}.functions.${NHOST_REGION}.nhost.run/v1
# we need alias for public urls of nhost-broswer-client
PUBLIC_NHOST_AUTH_URL=${NHOST_AUTH_URL}
PUBLIC_NHOST_GRAPHQL_URL=${NHOST_GRAPHQL_URL}
PUBLIC_NHOST_STORAGE_URL=${NHOST_STORAGE_URL}
PUBLIC_NHOST_FUNCTIONS_URL=${NHOST_FUNCTIONS_URL}
# Hasura
HASURA_GRAPHQL_ENDPOINT=https://${NHOST_SUBDOMAIN}.hasura.${NHOST_REGION}.nhost.run
# Runtime
APP_NAME=Spectacular
APP_DESCRIPTION=Spectacular Console App
PUBLIC_DEFAULT_ORGANIZATION=chinthagunta
### Privacy and Terms ###
PUBLIC_TERMS_PRIVACY_COMPANY='Your Company'
PUBLIC_TERMS_PRIVACY_EFFECTIVE_DATE='January 1, 2024'
PUBLIC_TERMS_PRIVACY_WEBSITE='yourdomain.com'
PUBLIC_TERMS_PRIVACY_CONTACT_EMAIL='[email protected]'
PUBLIC_TERMS_PRIVACY_APP_NAME='Your App'
PUBLIC_TERMS_PRIVACY_APP_PRICING_AND_SUBSCRIPTIONS='[Details about the pricing, subscription model, refund policy]'
PUBLIC_TERMS_PRIVACY_COUNTRY='United States'
## feature flags (to enable, uncomment the variable).
## if variable present, it is considered as `true` no matter what the actual value is.
FEATURE_SHOW_MAGIC_LINK_LOGIN=true
FEATURE_SHOW_SOCIAL_LOGIN=true
FEATURE_SIMULATE_LOADING_STATE=false
###########################################################################
# Application Properties (Web)
###########################################################################
SITE_URL=https://spectacular-web.vercel.app
# below props are only used to experement
PUBLIC_SOME_CLIENT_FEATURE_FLAG=false
PUBLIC_SOME_SERVER_FEATURE_FLAG=false
API_PORT=7000
API_VERSION=v1
###########################################################################
# Application Properties (Docs)
###########################################################################
GH_SITE_URL=https://xmlking.github.io
GH_BASE_PATH=/spectacular