-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
20 lines (18 loc) · 996 Bytes
/
.env.example
File metadata and controls
20 lines (18 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# The API_KEY and SEARCH_ENGINE_ID environment variables are used to access Google's
# Custom Search JSON API, so we can access Google Search programmatically.
# Follow steps on this link to get a key and search engine ID: https://developers.google.com/custom-search/v1/overview
API_KEY = example_api_key
SEARCH_ENGINE_ID = example_search_engine_id
# Optional: if set, all `/api/*` server routes require either:
# - `x-api-key: <NAF_API_KEY>` OR
# - `Authorization: Bearer <NAF_API_KEY>`
NAF_API_KEY = example_dev_api_key
# These environment variables are used to configure a connection to a PostgreSQL
# database. Reach out to a project mentor to get access to these environment
# variables. There is a shared development database deployed in the cloud for
# this project, used so that developers can share data as they work on the project.
PGHOST = example-db.cluster-....rds.amazonaws.com
PGPORT = 5432
PGUSER = example_pguser
PGPASSWORD = example_pgpassword
PGDATABASE = example_pgdb