From 8486a899aeaa8cc0ef2fdaf8f4b6a7236ba7ae74 Mon Sep 17 00:00:00 2001 From: Aponia Date: Wed, 22 May 2024 22:03:15 -0700 Subject: [PATCH] =?UTF-8?q?feat:=20=E2=9C=A8=20add=20step=20for=20copying?= =?UTF-8?q?=20`.env.example`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 13470c5b..ef49baa0 100644 --- a/README.md +++ b/README.md @@ -55,19 +55,25 @@ git clone https://github.com/icssc/peterportal-api-next cd peterportal-api-next ``` -2. Install dependencies. +2. Create a `.env` file. To get started, cloning the `.env.example` should work for now. + +```sh +cp .env.example .env +``` + +3. Install dependencies. ```sh pnpm install ``` -3. Start local PostgresSQL database. +4. Start local PostgresSQL database. ```sh docker compose up -d ``` -4. Start development server. +5. Start development server. ```sh pnpm dev