pip install -r requirements.txt
pytest
export FLASK_APP=flask_app
flask run
- endpoint: '/'
- method: GET
NOTE: auth_token should be in header. "Bearer +auth_token"
- endpoint: '/signup'
- method: POST
- data: { "email":"xxxxxx", "password":"xxxxxx"}
- endpoint: '/login'
- method: POST
- data: { "email":"xxxxxx", "password":"xxxxxx"}