Setup
1.Git Clone the project with: git clone https://github.com/mrkhan02/hi-ya.git
2.Move to the base directory: cd hi-ya
3.Create a new python enveronment with: python -m venv env.
4.Activate enveronment with: env\Scripts\activate on windows, or source env/bin/activate on Mac and Linux.
5.Install required dependences with:pip install django djangorestframework django-cors-header
6.Make migrations with: python manage.py makemigrations and then python manage.py migrate.
7.Run app localy with: python manage.py runserver.