mirror of
https://github.com/lingble/twenty.git
synced 2025-11-01 21:27:58 +00:00
[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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user