File tree 1 file changed +18
-2
lines changed
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.
25
25
This project implements the [ Scripts To Rule Them All] ( https://github.com/github/scripts-to-rule-them-all ) interface for developers:
26
26
27
27
** 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
+ ```
30
46
31
47
** Updating Running Version**
32
48
* ` script/update ` — Run after changing code or switching branches to refresh server
You can’t perform that action at this time.
0 commit comments