[Bug fix] Reference container name instead of localhost for postgres url in .env file (#808)

* url should reference container name instead of localhost

* add context for the postgres URL change, when installing with Docker. Also minor grammar/typo changes.

* return the postgres URL to its original value, which corresponds with the recommended (yarn) installation.

---------

Co-authored-by: Charles Bochet <charlesBochet@users.noreply.github.com>
This commit is contained in:
Peter Mulard
2023-07-25 10:17:49 -07:00
committed by GitHub
parent d6afbe8e8e
commit c2d6abde65

View File

@@ -115,11 +115,20 @@ git clone git@github.com:twentyhq/twenty.git
### 3. Setup env variables
Twenty requires a few environment variables to be set. Locally, we recommend setting them through `.env` files.
```bash
cp ./front/.env.example ./front/.env
cp ./server/.env.example ./server/.env
```
The default values should work out of the box.
The default values should work out of the box, except for the postgres URL, which requires a small modification.
Open `./server/.env` and change to the following:
```bash
PG_DATABASE_URL=postgres://postgres:postgrespassword@postgres:5432/default?connection_limit=1
```
### 4. Build