-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.env.sample
39 lines (30 loc) · 1.42 KB
/
.env.sample
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
# The API token used to fetch Map metadata (local: optional) (prod: required)
#CODESEE_API_TOKEN
# An API token used to fetch GitHub stats (local: optional) (prod: required)
#GITHUB_PERSONAL_ACCESS_TOKEN
# The site id for Fathom Analytics (local: optional) (prod: required)
#FATHOM_SITE_ID
# Required for local production testing. This is a stringified JSON blob
# downloaded from the Firebase dashboard. (local: optional) (prod: required)
#FIREBASE_SERVICE_ACCOUNT_KEY
# Firebase client configuration (required)
FIREBASE_CLIENT_API_KEY="AIzaSyCcmRBQnJqvh3cQXl1VWOv9BsP5smQCfUc"
FIREBASE_CLIENT_AUTH_DOMAIN="demo-open-source-hub-8e6a5.firebaseapp.com"
FIREBASE_CLIENT_PROJECT_ID="demo-open-source-hub-8e6a5"
# Firebase emulator configuration (local: required) (prod: forbidden)
FIRESTORE_EMULATOR_HOST="localhost:8080"
FIREBASE_AUTH_EMULATOR_HOST="localhost:9099"
# Secret used to verify the integrity of session cookies (required)
SESSION_COOKIE_SECRET="s3cr3t"
# Secret used to fetch blog posts from Ghost
GHOST_API_URL=
GHOST_API_KEY=
# API key used by OSCAR to communicate with our API (local: optional) (prod: required)
OSCAR_API_KEY=
# Credentials for the OSH Bot GitHub App (local: optional) (prod: required)
# Use Buffer.from(key).toString("base64") to encode the private key
GITHUB_OSH_BOT_APP_ID=""
GITHUB_OSH_BOT_PRIVATE_KEY_BASE_64=""
GITHUB_OSH_BOT_CLIENT_ID=""
GITHUB_OSH_BOT_CLIENT_SECRET=""
GITHUB_OSH_BOT_INSTALLATION_ID=""