From fe47af01f06cfbcfe9504699522c414c3c745036 Mon Sep 17 00:00:00 2001 From: hughcrt Date: Sun, 10 Mar 2024 22:07:55 -0300 Subject: [PATCH] chore: update contributing instructions --- CONTRIBUTING.md | 2 +- packages/backend/.env.example | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6b212cdf..68c0fb09 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,7 +1,7 @@ ## Development environment setup 1. Fork and clone the repository -2. Setup a PostgreSQL instance +2. Setup a PostgreSQL instance (version 15 minimum) 3. Run the content of `packages/db/init.sql` in your Postgres instance 4. Copy the content of `packages/backend/.env.example` to `packages/backend/.env` and fill the missing values 5. Copy the content of `packages/frontend/.env.example` to `packages/backend/.env` diff --git a/packages/backend/.env.example b/packages/backend/.env.example index cf10f3ce..3f6d2038 100644 --- a/packages/backend/.env.example +++ b/packages/backend/.env.example @@ -1,6 +1,7 @@ POSTGRES_URI="postgresql://postgres:password@your-host:5432/postgres" JWT_SECRET=yoursupersecret NEXT_PUBLIC_APP_URL=http://localhost:8080 +SKIP_EMAIL_VERIFY=true # optionnal (for the playground, evaluation and radar features)