Skip to content

Latest commit

 

History

History

api-server

sentry-release-registry-apiserver

This is a minimal web service that gives better access to the data contained in this repository.

Installation

virtualenv -ppython3 .venv
. .venv/bin/activate
pip install --editable .

Run the server

Locally you can use flask run for it:

export FLASK_APP=./apiserver.py
export FLASK_ENV=development
flask run

For production use export FLASK_ENV=production instead.