Install python-3.7.2
and python-pip
. Follow the steps from the below reference document based on your Operating System.
Reference: https://docs.python-guide.org/starting/installation/
- python -m venv venv
- venv/Scripts/activate
git clone "https://github.com/nilay1221/JustChat.git"
pip install -r requirements.txt
# Make migrations
python manage.py makemigrations
python manage.py migrate
# Make admin user
python manage.py createsuperuser
# Run the server
python manage.py runserver
# your server is up on port 8000
Try opening http://localhost:8000 in the browser. Now you are good to go.