-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.staging.example
More file actions
31 lines (25 loc) · 1.11 KB
/
.env.staging.example
File metadata and controls
31 lines (25 loc) · 1.11 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
# Template for .env.staging — copy this file to .env.staging next to
# the Dockerfile before running `docker build`, then fill in the real
# staging values. The actual .env.staging is gitignored so secrets
# stay host-side. The image build pipeline (Dockerfile, builder stage)
# requires this file to be present; without it the build falls
# through to .env (development config) and the resulting bundle is
# mislabelled as a development build.
NEXT_PUBLIC_ENV=staging
NEXT_PUBLIC_INDEXING=off
# Public — shipped to the browser bundle.
NEXT_PUBLIC_DOMAIN=https://keepsimple.administration.ae
NEXT_PUBLIC_API_KEY=__fill_in__
NEXT_PUBLIC_STRAPI=https://strapi.keepsimple.io
NEXT_PUBLIC_MIXPANEL_TOKEN=__fill_in__
NEXT_PUBLIC_UXCAT_API=https://staging-uxcat.keepsimple.io/
# Server-only — never exposed to the browser.
STRAPI_URL=https://strapi.keepsimple.io
NEXTAUTH_URL=https://keepsimple.administration.ae
NEXTAUTH_SECRET=__fill_in__
GOOGLE_CLIENT_ID=__fill_in__
GOOGLE_CLIENT_SECRET=__fill_in__
LINKEDIN_CLIENT_ID=__fill_in__
LINKEDIN_CLIENT_SECRET=__fill_in__
DISCORD_CLIENT_ID=__fill_in__
DISCORD_CLIENT_SECRET=__fill_in__