The backend api powering the Covid-19 Kenya Website
# CovidKenya Backend
Core is the backend that powers the Covid Kenya website.
## Tech
Core is written in Python3 and Django 3.0.3.
## Setup
* First, clone the repository:
```sh
git clone
github.com
cd core
```
* Create a virtual environment to install dependencies in and activate it:
```sh
mkvirtualenv
source /bin/activate
```
* Install requirements in the virtual environment created:
```sh
pip install -r requirements.txt
```
* Run database migrations with this command
```sh
python3 manage.py migrate
```
* Run server to ensure everything is working properly.
```sh
python3 manage.py runserver
```
### Collaboration
Clone the repository and please read the contributing guide.
### License
This project is licensed under the MIT License - see the LICENSE file for more details.