From ef7489822053dcc7da41d3758ee029e79c01e81f Mon Sep 17 00:00:00 2001 From: Chee Yong <81070048+leecheeyong@users.noreply.github.com> Date: Thu, 2 Nov 2023 16:35:47 +0000 Subject: [PATCH] fix --- .env.example | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 00000000..1700a3ad --- /dev/null +++ b/.env.example @@ -0,0 +1,19 @@ +# Sqlite database url (you can leave this as is) +DATABASE_URL="file:./dev.db" + +# If you're using turso for the DB, you will need this too +DATABASE_AUTH_TOKEN= + +# Clerk Environment Variables +NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY= +CLERK_SECRET_KEY= + +# Don't need to change those +NEXT_PUBLIC_CLERK_SIGN_IN_URL=/sign-in +NEXT_PUBLIC_CLERK_SIGN_UP_URL=/sign-up +NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL=/app +NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL=/app + +# Redis (Upstash) +UPSTASH_REDIS_REST_URL= +UPSTASH_REDIS_REST_TOKEN= \ No newline at end of file