-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (34 loc) · 1.79 KB
/
Copy path.env.example
File metadata and controls
36 lines (34 loc) · 1.79 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
32
33
34
35
36
# Instagram feed (optional) ------------------------------------------------
# Long-lived Instagram Graph API access token. When unset, the Instagram
# section falls back to a "follow" card and the site still builds.
#
# How to get it (Instagram API with Instagram Login):
# 1. Switch the IG account to Business or Creator (Settings > Account type).
# 2. Create a Meta app at https://developers.facebook.com and add the
# "Instagram" product, then add this IG account as a tester.
# 3. Generate a short-lived token, then exchange it for a long-lived one
# (~60 days) and refresh it before expiry via
# https://graph.instagram.com/refresh_access_token.
#
# The old Instagram Basic Display API was shut down 2024-12-04; this uses the
# Graph API instead.
INSTAGRAM_TOKEN=
# Supabase (backend) -------------------------------------------------------
# From the Supabase dashboard: Project Settings > API. Copy this file to
# .env.local and fill in the values; also add them to the Vercel project env
# for production. The publishable key is safe to expose in the browser.
#
# LOCAL DEV (Supabase CLI): run `supabase start` and paste the printed values:
# NEXT_PUBLIC_SUPABASE_URL=http://127.0.0.1:54321
# NEXT_PUBLIC_SUPABASE_PUBLISHABLE_KEY=<the "anon key" from `supabase start`>
# Studio: http://localhost:54323 · Inbucket (emails): http://localhost:54324
# See todo.supabase.md for the full local setup recipe.
NEXT_PUBLIC_SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_PUBLISHABLE_KEY=
# Local-only OAuth (optional): only needed if you flip auth.external.* on in
# supabase/config.toml to test GitHub/Google sign-in locally. Leave blank to use
# email/magic-link auth via Inbucket instead.
# SUPABASE_AUTH_GITHUB_CLIENT_ID=
# SUPABASE_AUTH_GITHUB_SECRET=
# SUPABASE_AUTH_GOOGLE_CLIENT_ID=
# SUPABASE_AUTH_GOOGLE_SECRET=