https://github.com/stevekm/rx-adherence-app
HCLS Hackathon project for tracking patient drug prescription usage
https://github.com/stevekm/rx-adherence-app
api app django hackathon vuejs
Last synced: 3 months ago
JSON representation
HCLS Hackathon project for tracking patient drug prescription usage
- Host: GitHub
- URL: https://github.com/stevekm/rx-adherence-app
- Owner: stevekm
- License: gpl-3.0
- Created: 2019-04-26T14:56:01.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-27T18:13:34.000Z (about 6 years ago)
- Last Synced: 2025-03-02T17:45:57.421Z (3 months ago)
- Topics: api, app, django, hackathon, vuejs
- Language: Python
- Homepage:
- Size: 407 KB
- Stars: 4
- Watchers: 6
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rx-Adherence-app
App to help patients track their adherence to prescription drug usage protocols, and allow for doctors to recieve this information.
## Local Installation
Clone this repo
```
git clone https://github.com/stevekm/Rx-Adherence-app.git
cd Rx-Adherence-app
```Install dependencies
```
make conda-install
make frontend-install
```Initialize app databases
```
make init
```Import data into app databases (run this a few times)
```
make import
```Run local Django server
```
make runserver
```Start Vue.js server
```
make frontend-run
```Example `curl` request to API:
```
$ curl http://127.0.0.1:8000/users/
{"1": "Bob", "2": "Mary", "3": "John", "4": "Jane"}
```