Skip to content

Commit d120c21

Browse files
authored
Move npm start instruction below seeding the DB
If you try to run the server before setting up and seeding the DB you get an error. This instruction should be below those instructions.
1 parent 8e21681 commit d120c21

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,6 @@
44

55
Install dependencies with `npm install`.
66

7-
## Run The Server
8-
9-
```sh
10-
npm start
11-
```
12-
137
## Creating The DB
148

159
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.
@@ -37,6 +31,12 @@ Both of these achieve the same result.
3731

3832
The `development` data is random. Each time we seed we expect to see different appointments.
3933

34+
## Run The Server
35+
36+
```sh
37+
npm start
38+
```
39+
4040
## Api
4141

4242
### Days

0 commit comments

Comments
 (0)