This is Django Blog Demo
$ git clone https://github.com/udemy-course/Django-Blog-Demo
$ python -m venv django
$ source django/bin/activate
$ cd Django-Blog-Demo
$ pip install -r requirements.txt
In the setting.py, change the database configuration as your environment.
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'mysite',
'USER': 'root',
'PASSWORD': 'root',
'HOST': '127.0.0.1',
'PORT': '3306',
}
}
$ python manage.py migrate
$ python manage.py runserver