https://github.com/dssg/aequitas
Raw File
Tip revision: 19a24b94d454743367677f974aff4924a65b7bb7 authored by Sérgio Jesus on 02 February 2024, 11:14:40 UTC
Add notebook of methods contribution and update markdown
Tip revision: 19a24b9
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