First, clone the repository
git clone https://github.com/Kindev/fundraisee-api.git
cd fundraisee-api
Create a virtualenv to isolate our package dependencies locally
python3.6 -m venv env
source env/bin/activate
Install all required dependencies
pip install -r requirements.txt
Create database, superuser and run the server, check http://localhost:8000 for swagger
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
Read our contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to submit a pull request.