git clone https://github.com/tsadimas/django3-sampe-project.git
python -m venv myvenv
source myvenv/bin/activate
pip install -r requirements.txt
cd myproject
cp myproject/.env.example myproject/.env
edit myproject/.env file to define
SECRET_KEY='test123'
DATABASE_URL=sqlite:///./db.sqlite3
python manage.py runserver
hello