Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 443 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 443 Bytes

brapi-postgres

A BrAPI server implementation using PostgreSQL as its core technology. The very light application code in this repo uses flask.

Development

  1. Start up the postgreSQL container.
docker compose up -d
  1. Install dependencies (optionally create a virtual environment first).
pip install -r requirements.txt
  1. Run flask development server in debug mode.
flask --app server run --debug