Skip to content

Commit e8ad3d3

Browse files
authored
Merge pull request #2 from tlkh/master
Updated README with instructions for pulling upstream changes
2 parents 6db0f23 + 382d26a commit e8ad3d3

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,25 @@ Database will not be pushed to github (will be local on your computer). Run migr
88
```
99
python3 manage.py makemigrations
1010
python3 manage.py migrate
11+
12+
# create dashboard admin user
13+
python3 manage.py createsuperuser
1114
```
1215

1316
## Running the test server
1417

1518
```
1619
python3 manage.py runserver
20+
```
21+
22+
## Synchronizing your fork to upstream (OpenSUTD repo)
23+
24+
```
25+
# one time setup
26+
git remote add upstream https://github.com/OpenSUTD/web-platform-prototype
27+
28+
# pull upstream changes
29+
git fetch upstream
30+
git merge upstream/master
31+
git push
1732
```

0 commit comments

Comments
 (0)