Skip to content

kwek-market/backend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

backend

Kwek Market's Django Graphql Backend

start the application

  1. create .env file from example.env

  2. create virtual env and activate it

  • for linux or mac (with virtualenv installed)
$ virtualenv env
$ source env/bin/activate
  1. install app dependencies
$ pip install -r requirements.txt
  1. make migrations and migrate
$ python manage.py makemigrations bill kwek_auth market notifications users wallet kwek_admin
$ python manage.py migrate
  1. start server
$ python manage.py runserver
  1. run test
$ pytest