We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd0e0d3 commit a0b47f2Copy full SHA for a0b47f2
README.md
@@ -9,6 +9,11 @@ https://sleepy-beyond-95793.herokuapp.com/
9
3. `CREATE DATABASE toolshare;`
10
4. `CREATE USER sunuwars WITH SUPERUSER PASSWORD 'sunuwars123';`
11
5. `ALTER DATABASE toolshare OWNER TO sunuwars;`
12
+
13
+INSTEAD OF steps 2 to 5, another option is to do this:
14
+`createdb toolshare -O sunuwars`
15
+(or `createdb toolshare –owner=sunuwars`)
16
17
6. Create `config.env` in the project's root directory
18
7. Copy `DB_URL = postgres://sunuwars:sunuwars123@localhost:5432/toolshare` into `config.env`
19
8. `npm run dev`
0 commit comments