Skip to content

Commit

Permalink
refactor(.env): change defult Postgres user and Password in local env…
Browse files Browse the repository at this point in the history
…ironment
  • Loading branch information
filipedeschamps committed Mar 4, 2022
1 parent 84a0843 commit bd88f3c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .env
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
POSTGRES_USER=local
POSTGRES_PASSWORD=local
POSTGRES_USER=local_user
POSTGRES_PASSWORD=local_password
POSTGRES_DB=tabnews
POSTGRES_HOST=localhost
POSTGRES_PORT=54320
DATABASE_URL=postgres://local:local@localhost:54320/tabnews
DATABASE_URL=postgres://local_user:local_password@localhost:54320/tabnews
WEBSERVER_HOST=localhost
WEBSERVER_PORT=3000
EMAIL_SMTP_HOST=localhost
Expand Down

0 comments on commit bd88f3c

Please sign in to comment.