Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
db
config.ini
config.bak
config.bak
TEMPLATE-INFO.txt
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Setup

```sh
# Clone mercurial repository.
hg clone http://hg.code.sf.net/p/roundup/code roundup

# Navigate to roundup, then git clone tracker only repo.
cd roundup
git clone https://github.com/UMB-CS-682-Team-03/tracker.git

# Init the demo tracker
python3 demo.py -b sqlite

# Move the files from tracker dir to demo dir
cp -r ./tracker/**/* ./demo
cp -r ./tracker/.git ./tracker/.gitignore ./demo

# Delete the tracker dir
rm -rf ./tracker

# Now you are setup open the roundup folder in VScode.
# Any new changes are only to be done in demo dir
# git is initialised to track origin in demo dir
```