File tree Expand file tree Collapse file tree 1 file changed +18
-2
lines changed
Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -25,8 +25,24 @@ This is a Code for Philly project operating under their code of conduct.
2525This 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
You can’t perform that action at this time.
0 commit comments