pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
python manage.py generateproto --model account.models.User --file proto/user/user.proto
python manage.py generateproto --model account.models.Book --file proto/book/book.proto
python -m grpc_tools.protoc -I ./ --python_out=./ --grpc_python_out=./ ./proto/auth.proto
python -m grpc_tools.protoc -I ./ --python_out=./ --grpc_python_out=./ ./proto/user.proto
python -m grpc_tools.protoc -I ./ --python_out=./ --grpc_python_out=./ ./proto/book.proto
python manage.py grpcrunserver