From 3539a5f3ebed7e80e93e97d6be5c890481b9b41d Mon Sep 17 00:00:00 2001 From: Christopher Mayor Date: Fri, 24 Apr 2026 14:35:19 -0700 Subject: [PATCH] feat: add .env.example with required environment variables --- .env.example | 6 ++++++ .gitignore | 1 + 2 files changed, 7 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..f0f7812 --- /dev/null +++ b/.env.example @@ -0,0 +1,6 @@ +DATABASE_URL=postgresql://postgres:postgres@localhost:5432/comparaison +BETTER_AUTH_SECRET=change-me-to-random-string +OPENAI_API_KEY= +PERPLEXITY_API_KEY= +TAVILY_API_KEY= +NEXT_PUBLIC_APP_URL=http://localhost:3000 diff --git a/.gitignore b/.gitignore index 5ef6a52..7b8da95 100644 --- a/.gitignore +++ b/.gitignore @@ -32,6 +32,7 @@ yarn-error.log* # env files (can opt-in for committing if needed) .env* +!.env.example # vercel .vercel