account book server project
$ pipenv install
$ pipenv shell
Start MySQL
service, create a databaseaccountbook
:
CREATE DATABASE accountbook DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;
Check the database connection configuration and perform a table migration:
$ python manage.py migrate
$ python manage.py runserver
- See details:
wiki