- Python 3
- Create the virtualenv using the Python 3
mkvirtualenv -p python3 api-fb-doc
- Enter to the virtual env
workon api-fb-doc
- Install dependencies
pip install -r requirements.txt
- Crete the local DB
fabmanager create-db
- Create the admin user
fabmanager create-admin
- Run the application
fabmanager run
You could access to the application using the url http://localhost:8080/ The Swager API documentation is on http://localhost:8080/swagger/v1 and you can try out the api.
This package was created with Cookiecutter