https://github.com/dssg/aequitas
Raw File
Tip revision: c8c80ffa0d3e24ca5596e1e7d47f5502517411b3 authored by Sérgio Jesus on 20 February 2024, 15:54:11 UTC
Change attribute call to sensitive_column
Tip revision: c8c80ff
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