forked from HHS/simpler-grants-gov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.development
35 lines (27 loc) · 1.33 KB
/
.env.development
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
# !! Don't put secrets in this file. Use .env.local for secrets instead !!
# This file is checked into your git repo and provides defaults for non-sensitive
# env vars when running `next dev` only.
# Learn more: https://nextjs.org/docs/app/building-your-application/configuring/environment-variables
# If you deploy to a subpath, change this to the subpath so relative paths work correctly.
NEXT_PUBLIC_BASE_PATH=
# Put the following secrets into a .env.local file for local development
SENDY_API_KEY=
SENDY_API_URL=
SENDY_LIST_ID=
# when running the full containerized app locally in Docker, uncomment the line below to
# enable connection to the containerized API server
# API_URL=http://host.docker.internal:8080
API_URL=http://localhost:8080
# Hardcode public auth key for local to local calls
# This is also hardcoded and checked-in on the API
API_AUTH_TOKEN=LOCAL_AUTH_12345678
AUTH_LOGIN_URL=http://localhost:8080/v1/users/login
# Boolean to switch between mock data and live API call data
# Default is a live API call
USE_SEARCH_MOCK_DATA=false
# Credentials for DEV Next New Relic Account (see 1pass)
# Best practice is to pass these in the command line when you start your dev server rather than entering them here
# DO NOT COMMIT THESE VALUES TO GITHUB
NEW_RELIC_APP_NAME=
NEW_RELIC_LICENSE_KEY=
SESSION_SECRET=extraSecretSessionSecretValueSssh