-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add info to .env.example to explain what is needed where
- Loading branch information
Showing
1 changed file
with
15 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,24 @@ | ||
# The following are configured in the .env.production and .env.development | ||
# files, you should not have to change them. If you do, please do NOT commit | ||
# those changes | ||
NEXT_PUBLIC_VERCEL_ENV = development | ||
NEXT_PUBLIC_URL = 'http://localhost:3000' | ||
NEXT_PUBLIC_MOD_PROTOCOL_API_URL = 'https://api.modprotocol.org/api' | ||
|
||
# The following are sensative data and should | ||
# be stored in a .env.development.local file | ||
# for local development, and are hosted in Vercel | ||
# for production use cases | ||
NEXT_PUBLIC_APP_FID = '123' | ||
NEXT_PUBLIC_APP_MNENOMIC = 'candy maple cake sugar honey ... potato blue' | ||
NEXT_PUBLIC_SUPABASE_URL = '' | ||
NEXT_PUBLIC_SUPABASE_ANON_KEY = '' | ||
NEXT_PUBLIC_NEYNAR_API_KEY = '' | ||
NEXT_PUBLIC_SENTRY_DSN = '' | ||
NEXT_PUBLIC_URL = 'http://localhost:3000' | ||
|
||
NEXT_PUBLIC_MOD_PROTOCOL_API_URL = 'https://api.modprotocol.org/api' | ||
NEXT_PUBLIC_ALCHEMY_API_KEY='' | ||
|
||
# The following are required for tracking | ||
# and deployment purposes. They are also sensative | ||
# but not required for local development | ||
NEXT_PUBLIC_SENTRY_DSN = '' | ||
NEXT_PUBLIC_POSTHOG_KEY= | ||
NEXT_PUBLIC_POSTHOG_HOST= | ||
NEXT_PUBLIC_ALCHEMY_API_KEY= |