An open API service indexing awesome lists of open source software.

https://github.com/maximizeit/dhc18


https://github.com/maximizeit/dhc18

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# TUC @ Digitial Health Challenge 2018 (DHC18)

Clone repository into desired folder. Or download zip file.
```
git clone git@github.com:maximizeIT/dhc18.git
```

Navigate to directory:
```
cd dhc18
```

## Live deploy on Heroku App Platform
```
https://dhc18.herokuapp.com/
```

## Important git commands
1) Check local changes.
```
git status
```

2) Add all locally modified files to next commit.
```
git add *
```

3) Make commit with locally modified and added files.
```
git commit -m "blablabla"
```

4) Push locally modified, added and committed files.
```
git push
```

Retrieve list of online available commits/updates.
```
git fetch
```

Pull latest version from repository.
```
git pull --rebase
```