A custom API server based on Python Pyramid framework
You could create your postgres via docker(optional, or you could simply use sqlite instead)
$ docker run -d -e POSTGRES_DB=postgres -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres -p 5432:5432 postgres
or just edit the sqlalchemy setting in development.ini
.
(venv)$ cd <directory containing this file>
(venv)$ venv/bin/python setup.py develop
(venv)$ venv/bin/initialize_scarab_db development.ini
(venv)$ venv/bin/pserve development.ini
- make it to a scaffold.