Skip to content

Commit

Permalink
Fix postgres commands in dev env setup docs
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickbkr committed May 20, 2023
1 parent 8535ed6 commit 4a4049b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/dev-env-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Install and set up Postgres
sudo systemctl start postgresql

sudo -u postgres psql
CREATE USER your-user WITH CREATEDB
CREATE DATABASE rcb_dev OWNER your-user
CREATE USER <your-user> WITH CREATEDB;
CREATE DATABASE rcb_dev OWNER <your-user>;
\q


Expand Down

0 comments on commit 4a4049b

Please sign in to comment.