- Install pip globally:
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python3 get-pip.py
source ~/.bashrc-
Install
pipenv: pip install --user pipenv -
Note: if you have
python 3.9then you should installdjangorestframework-simplejwt==4.6.0by issuingpipenv install djangorestframework-simplejwt==4.6.0
-
Clone project:
git clone [email protected]:devkurultay/django-react-starter-kg.git -
Go to project
cd django-react-starter-kg -
Install project dependecies:
pipenv install -
Activate the project's virtual environment:
pipenv shell -
Go to
backendand run migrations:cd backend/ && ./manage.py migrate
-
Create superuser:
./manage.py createsuperuser -
Run the server:
./manage.py runserver -
Open the project in your browser (this leads to Swagger UI):
http://localhost:8000/sw/