aboutsummaryrefslogtreecommitdiff
path: root/apps/web/.env.example
diff options
context:
space:
mode:
authorDhravya <[email protected]>2024-02-21 16:11:35 -0700
committerDhravya <[email protected]>2024-02-21 16:11:35 -0700
commitcdceb1bc87dc2d5ef42a7f172ea5dc2263c5c526 (patch)
treee0234f7fff63b312f18c945bed37a430d1e68755 /apps/web/.env.example
downloadsupermemory-cdceb1bc87dc2d5ef42a7f172ea5dc2263c5c526.tar.xz
supermemory-cdceb1bc87dc2d5ef42a7f172ea5dc2263c5c526.zip
initialised monorepo with auth and extension communication
Diffstat (limited to 'apps/web/.env.example')
-rw-r--r--apps/web/.env.example23
1 files changed, 23 insertions, 0 deletions
diff --git a/apps/web/.env.example b/apps/web/.env.example
new file mode 100644
index 00000000..35ecefb5
--- /dev/null
+++ b/apps/web/.env.example
@@ -0,0 +1,23 @@
+# Since the ".env" file is gitignored, you can use the ".env.example" file to
+# build a new ".env" file when you clone the repo. Keep this file up-to-date
+# when you add new variables to `.env`.
+
+# This file will be committed to version control, so make sure not to have any
+# secrets in it. If you are cloning this repo, create a copy of this file named
+# ".env" and populate it with your secrets.
+
+# When adding additional environment variables, the schema in "/src/env.js"
+# should be updated accordingly.
+
+# Drizzle
+DATABASE_URL="db.sqlite"
+
+# Next Auth
+# You can generate a new secret on the command line with:
+# openssl rand -base64 32
+# https://next-auth.js.org/configuration/options#secret
+# NEXTAUTH_SECRET=""
+NEXTAUTH_URL="http://localhost:3000"
+
+GOOGLE_CLIENT_ID=""
+GOOGLE_CLIENT_SECRET=""