You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-5Lines changed: 4 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,10 @@ Install dependencies with `npm install`.
6
6
7
7
## Creating The DB
8
8
9
-
Use the `psql -U development` command to login to the PostgreSQL server with the username `development` and the password `development`. This command **MUST** be run in a vagrant terminal, we are using the PostgreSQL installation provided in the vagrant environment.
10
-
11
-
Create a database with the command `CREATE DATABASE scheduler_development;`.
12
-
13
-
Copy the `.env.example` file to `.env.development` and fill in the necessary PostgreSQL configuration. The `node-postgres` library uses these environment variables by default.
9
+
1. Make sure you have a `development` use for PostgreSQL
10
+
2. Use the `psql -U development` command to login to the PostgreSQL server with the username `development` and the password `development`.
11
+
3. Create a database with the command `CREATE DATABASE scheduler_development;`.
12
+
4. Copy the `.env.example` file to `.env.development` and fill in the necessary PostgreSQL configuration. The `node-postgres` library uses these environment variables by default.
0 commit comments