Skip to content

Commit

Permalink
docs: env
Browse files Browse the repository at this point in the history
  • Loading branch information
mrevanzak committed Nov 29, 2023
1 parent 961cb57 commit 48f1ddc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
# The database URL is used to connect to your PlanetScale database.
DATABASE_URL=

EXPO_PUBLIC_API_URL=
EXPO_PUBLIC_CLERK_PUBLISHABLE_KEY=

NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=
CLERK_SECRET_KEY=
WEBHOOK_SECRET=

WEBHOOK_SECRET=
EXPO_PUBLIC_API_URL=
CLERK_PUBLISHABLE_KEY=
SUPABASE_STORAGE_URL=
SUPABASE_SERVICE_KEY=
3 changes: 3 additions & 0 deletions apps/nextjs/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ const config = {
/** We already do linting and typechecking as separate tasks in CI */
eslint: { ignoreDuringBuilds: true },
typescript: { ignoreBuildErrors: true },
env: {
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: process.env.CLERK_PUBLISHABLE_KEY,
},
};

export default config;

0 comments on commit 48f1ddc

Please sign in to comment.