Open terminal from directory you want to place this project.
gh repo clone ez-startup/ezbackend
Make sure the directory is empty.
Install VirtualEnv
pip install virtualenv
python3 -m virtualenv .venv
source .venv/bin/activate
To install all dependencies from requirements.txt file.
pip install -r requirements.txt
Make sure you have development virtual environment is activated.
From you project directory in terminal by activated venv run the command line below
python manage.py makemigrations
python manage.py migrate
python manage.py runserver 0.0.0.0:8000 --open
Done with greate job! Now to access your website browsing with default browser.