Skip to content

Commit 4e64fd7

Browse files
authored
Update README.md
1 parent 306e1d2 commit 4e64fd7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ echo 'NODE_ENV=local
5050
PORT=<your port>
5151
DATABASE_SCHEMA=<your database schema>
5252
JWT_KEY=<your secret JWT seed phrase or key>
53-
DATABASE_URL_DEV=<your connection string based on above variables>
53+
DATABASE_URL=<your connection string based on above variables>
5454
' >> ./.env
5555
```
5656

@@ -68,7 +68,7 @@ _We do not recommend using the default options for PostgreSQL. The above values
6868

6969
**Warning**: If you are running Docker Toolbox instead of Docker Desktop (likely meaning you are running Windows 10 Home, not Professional) you will need to change your `.env` to reflect Docker running on a VM:
7070
- `DATABASE_HOST`: The IP address Docker is running on. You can find this by running `docker-machine ip` but it's usually `192.168.99.100` instead of `localhost`
71-
- `DATABASE_URL_DEV`: This will need to be adjusted as well, for example `DATABASE_URL_DEV=postgres://postgres:.@localhost:5432/postgres` would become `DATABASE_URL_DEV=postgres://postgres:[email protected]:5432/postgres`
71+
- `DATABASE_URL`: This will need to be adjusted as well, for example `DATABASE_URL=postgres://postgres:.@localhost:5432/postgres` would become `DATABASE_URL=postgres://postgres:[email protected]:5432/postgres`
7272

7373
## 2.3. PostgreSQL
7474
***You will need a PostgreSQL database running locally to run this application locally.*** You may setup PostgreSQL however you wish, however we recommend using Docker using the instructions found here: https://hub.docker.com/_/postgres

0 commit comments

Comments
 (0)