Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 890 Bytes

README.md

File metadata and controls

51 lines (42 loc) · 890 Bytes

codingclub-api

Python 3.10.6

Getting started and running locally:

Make directory

  mkdir codingclub_api
  cd codingclub_api

Initialized empty git repository

  git init

Set remote origin

  git remote add origin https://github.com/MustafaMunir123/codingclub-api.git

------------If above command does not work, then run---------------

  git pull https://github.com/MustafaMunir123/codingclub-api.git master

-----------------------Otherwise-----------------------

  git pull origin master

Install packages

  pip install -r requirements.txt

Make database migrations

  python manage.py makemigrations
  python manage.py migrate

Run django-backend

  python manage.py runserver