Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 716 Bytes

README_en.md

File metadata and controls

33 lines (26 loc) · 716 Bytes

accountbook_server

account book server project

Build steps

1. Create a virtual environment and install dependencies

$ pipenv install

2. Create a virtual environment and install dependencies

$ pipenv shell

3. Create database and perform migration

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

4. Operation service

$ python manage.py runserver