Skip to content

Commit 495ddbb

Browse files
authored
clarify README instructions a bit with code blocks
1 parent b2f5114 commit 495ddbb

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

README.md

+18-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,24 @@ This is a Code for Philly project operating under their code of conduct.
2525
This project implements the [Scripts To Rule Them All](https://github.com/github/scripts-to-rule-them-all) interface for developers:
2626

2727
**Starting Locally**
28-
1. `script/server` — Brings a fully working environment up at [localhost:8080](http://localhost:8080)
29-
2. `script/setup` — Run after `script/server` to initialize local database with seed data
28+
29+
Run the command below to bring a fully working environment up at [localhost:8080](http://localhost:8080).
30+
31+
```
32+
./script/server
33+
```
34+
35+
**Seeding Database with Data**
36+
37+
Run the command below to initialize local database with seed data
38+
39+
```
40+
# this makes sure server is running
41+
./script/server
42+
43+
# adds a test user account, and seed data
44+
./script/setup
45+
```
3046

3147
**Updating Running Version**
3248
* `script/update` — Run after changing code or switching branches to refresh server

0 commit comments

Comments
 (0)