This commit is contained in:
Santiago Lo Coco 2024-05-18 17:20:51 +02:00
parent 194a0401d7
commit 3fdf56081d
1 changed files with 24 additions and 22 deletions

View File

@ -21,37 +21,39 @@ In today's digital age, prolonged screen time is inevitable. BreakOften is your
Follow these steps to set up BreakOften on your local machine: Follow these steps to set up BreakOften on your local machine:
1. **Clone the repository**: 1. **Clone the repository**:
```bash
git clone https://github.com/se23m504/BreakOften.git ```bash
cd BreakOften git clone https://github.com/se23m504/BreakOften.git
``` cd BreakOften
```
2. **Install dependencies**: 2. **Install dependencies**:
```bash
npm install ```bash
``` npm install
```
3. **Setup environment variables**: 3. **Setup environment variables**:
Create a `.env` file with your `DATABASE_URL`. You can start by copying the example file and then modify it: Create a `.env` file with your `DATABASE_URL`. You can start by copying the example file and then modify it:
```bash ```bash
cp .env.example .env cp .env.example .env
``` ```
4. **Set up database**: 4. **Set up database**:
Push the Prisma schema to Supabase:
```bash Push the Prisma schema to Supabase:
npx prisma db push
``` ```bash
npx prisma db push
```
5. **Run the development server**: 5. **Run the development server**:
Start the server and open your browser:
```bash Start the server and open your browser:
npm run dev -- --open
``` ```bash
npm run dev -- --open
```