Kwek Market's Django Graphql Backend
-
create .env file from example.env
-
create virtual env and activate it
- for linux or mac (with virtualenv installed)
$ virtualenv env
$ source env/bin/activate
- install app dependencies
$ pip install -r requirements.txt
- make migrations and migrate
$ python manage.py makemigrations bill kwek_auth market notifications users wallet kwek_admin
$ python manage.py migrate
- start server
$ python manage.py runserver
- run test
$ pytest