pip install -r requirements.txt
# 通常起動
python main.py
# debug起動
FLASK_DEBUG=1 python main.py
# まずデータベース起動
docker-compose up -d db
# uwsgiでアプリケーションサーバ起動
docker-compose up -d uwsgi
# Webサーバ起動
docker-compose up -d web
curl http://127.0.0.1/ping
curl -X POST -H "Content-Type: application/json" -d '{"user_id":"[user_id]", "password":"[password]"}' http://127.0.0.1/signup
curl -X POST -H "Content-Type: application/json" -d '{"user_id":"[userid]", "password":"[password]"}' http://127.0.0.1/signin