-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.env.local.example
34 lines (27 loc) · 1.26 KB
/
.env.local.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
# Copy this file as ".env.local".
# Update these with your Firebase app's values.
NEXT_PUBLIC_FIREBASE_PUBLIC_API_KEY=MyExampleAppAPIKey123
NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN=my-example-app.firebaseapp.com
NEXT_PUBLIC_FIREBASE_DATABASE_URL=https://my-example-app.firebaseio.com
NEXT_PUBLIC_FIREBASE_PROJECT_ID=my-example-app-id
# Your Firebase private key.
# When using Vercel, add the private key with double quotes
# via the CLI, not the Vercel dashboard:
# vercel secrets add firebase-private-key '"my-key-here"'
# Then, use `JSON.parse` in the app. See:
# https://github.com/vercel/vercel/issues/749#issuecomment-707515089
FIREBASE_PRIVATE_KEY='"some-key-here"'
# Secrets used to sign cookies.
COOKIE_SECRET_CURRENT=someSecretValue
COOKIE_SECRET_PREVIOUS=anotherSecretValue
# Cookie options.
NEXT_PUBLIC_COOKIE_SECURE=false # set to true in HTTPS environment
# Url Host for /pages/blog/[uuid]/index.js(getStaticPaths) //deprecated
NEXT_PUBLIC_HOST=http://localhost:3000
# Revalidate seconds for blog/[uuid]/index.js data //Change to higher value on production
NEXT_PUBLIC_REVALIDATE_ON_SECONDS=1
# Redis
REDIS_URL=redis://passwordstring@hoststring:portnumber
# Stock Data
STOCKDATA_KEY=<https://www.stockdata.org/documentation>