├── .buildpacks ├── .cfignore ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── Procfile ├── README.rst ├── app.py ├── aws.py ├── config.py ├── conftest.py ├── docker-compose.yml ├── entrypoint.py ├── hooks.py ├── instructions.md ├── main.py ├── manifest.yml ├── package.json ├── refresh_log.py ├── requirements.txt ├── run_docker.sh ├── run_in_docker.sh ├── runtime.txt ├── signing.py ├── swagger.py ├── tasks.py ├── templates ├── swagger-ui-css.html ├── swagger-ui-libs.html └── swagger-ui.html ├── test_api.py ├── test_load_table.py ├── umbrella.py └── utils.py /.buildpacks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/.buildpacks -------------------------------------------------------------------------------- /.cfignore: -------------------------------------------------------------------------------- 1 | .gitignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/Procfile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/README.rst -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/app.py -------------------------------------------------------------------------------- /aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/aws.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/config.py -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/conftest.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /entrypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/entrypoint.py -------------------------------------------------------------------------------- /hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/hooks.py -------------------------------------------------------------------------------- /instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/instructions.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/main.py -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/manifest.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/package.json -------------------------------------------------------------------------------- /refresh_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/refresh_log.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/run_docker.sh -------------------------------------------------------------------------------- /run_in_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/run_in_docker.sh -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.4.5 2 | -------------------------------------------------------------------------------- /signing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/signing.py -------------------------------------------------------------------------------- /swagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/swagger.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/tasks.py -------------------------------------------------------------------------------- /templates/swagger-ui-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/templates/swagger-ui-css.html -------------------------------------------------------------------------------- /templates/swagger-ui-libs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/templates/swagger-ui-libs.html -------------------------------------------------------------------------------- /templates/swagger-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/templates/swagger-ui.html -------------------------------------------------------------------------------- /test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/test_api.py -------------------------------------------------------------------------------- /test_load_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/test_load_table.py -------------------------------------------------------------------------------- /umbrella.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/umbrella.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/autoapi/HEAD/utils.py --------------------------------------------------------------------------------