Update install on docker

This commit is contained in:
Charles Bochet
2023-10-14 14:03:37 +02:00
parent 77729e4d4b
commit 04090446cc
3 changed files with 10 additions and 6 deletions

View File

@ -52,6 +52,7 @@ git clone https://github.com/twentyhq/twenty.git
Twenty requires a few environment variables to be set. Locally, we recommend setting them through `.env` files.
```bash
cd twenty
cp ./front/.env.example ./front/.env
cp ./server/.env.example ./server/.env
```
@ -91,7 +92,8 @@ make up
Run database migrations, generate prisma client, and seed:
```bash
make server-prisma-reset
make server-database-setup
make server-database-reset
```
## Step 5: Start Twenty
@ -123,7 +125,7 @@ make sh
Then run commands through yarn:
```bash
cd server
yarn prisma:reset
yarn database:reset
```