Open terminal from directory you want to place this project.
gh repo clone ez-startup/ezbackendMake sure the directory is empty.
Install VirtualEnv
pip install virtualenv
python3 -m virtualenv .venv
source .venv/bin/activateTo install all dependencies from requirements.txt file.
pip install -r requirements.txtMake 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 migratepython manage.py runserver 0.0.0.0:8000 --openDone with greate job! Now to access your website browsing with default browser.