https://github.com/dssg/aequitas
Raw File
Tip revision: a6b245cbfab066ccb09de094ab68ab7bcac6b9bd authored by dependabot[bot] on 29 March 2024, 16:16:20 UTC
Bump express from 4.18.2 to 4.19.2 in /src/aequitas/flow/plots/pareto/js
Tip revision: a6b245c
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