A simple Blog using Python Django and MySQL
Initial your database by :
- create a db in your mysql server called 'pyblog' :
open terminal :
mysql -u root -p <your passowd> create database pyblog; \q - init the db file at ./pyblog/db.py
- open the shell and config the db:
python manage.py makemigration
python manage.py migrate