https://github.com/dssg/aequitas
Raw File
Tip revision: e78fcbaf35b8a1aa1b9b5d751e647d3c12e7d342 authored by dependabot[bot] on 22 February 2024, 07:53:46 UTC
Bump ip from 1.1.8 to 1.1.9 in /src/aequitas/flow/plots/pareto/js
Tip revision: e78fcba
serve.py
#!/usr/bin/env python
import importlib
import os

# Make WSGI app available to server as "application"
from aequitas_webapp import app as application


# Ensure webapp logic is loaded
# (but don't import it into this namespace)
importlib.import_module('aequitas_webapp.views')


if __name__ == '__main__':
    # Run development server
    application.run(
        host=os.getenv('HOST'),
    )
back to top