https://github.com/shubhambansal1997/gehealthcare
Code made during gehealthcare hackthon
https://github.com/shubhambansal1997/gehealthcare
Last synced: 4 months ago
JSON representation
Code made during gehealthcare hackthon
- Host: GitHub
- URL: https://github.com/shubhambansal1997/gehealthcare
- Owner: ShubhamBansal1997
- Created: 2018-12-10T04:10:23.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-31T11:47:35.000Z (over 6 years ago)
- Last Synced: 2025-01-04T20:46:26.592Z (6 months ago)
- Language: CSS
- Size: 16.6 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
gehealthcare
==============================__Version:__ 0.0.0
Hackthon code at the gehealthcare
## Getting up and running
Minimum requirements: **pip, fabric, python3, redis & [postgres][install-postgres]**, setup is tested on Mac OSX only.
```
brew install postgres python3
[sudo] pip install fabric
```[install-postgres]: http://www.gotealeaf.com/blog/how-to-install-postgresql-on-a-mac
In your terminal, type or copy-paste the following:
git clone [email protected]:ShubhamBansal1997/gehealthcare.git; cd gehealthcare; fab init
Go grab a cup of coffee, we bake your hot development machine.
Useful commands:
- `fab serve` - start [django server](http://localhost:8000/)
- `fab deploy_docs` - deploy docs to server
- `fab test` - run the test locally with ipdb**NOTE:** Checkout `fabfile.py` for all the options available and what/how they do it.
## Deploying Project
The deployment are managed via travis, but for the first time you'll need to set the configuration values on each of the server.
Check out detailed server setup instruction [here](docs/backend/server_config.md).
## How to release gehealthcare
Execute the following commands:
```
git checkout master
fab test
bumpversion patch # 'patch' can be replaced with 'minor' or 'major'
git push origin master
git push origin master --tags
git checkout qa
git rebase master
git push origin qa
```## Contributing
Golden Rule:
> Anything in **master** is always **deployable**.
Avoid working on `master` branch, create a new branch with meaningful name, send pull request asap. Be vocal!
Refer to [CONTRIBUTING.md][contributing]
[contributing]: http://github.com/ShubhamBansal1997/gehealthcare/tree/master/CONTRIBUTING.md