diff --git a/.buildpacks b/.buildpacks new file mode 100644 index 00000000..35432653 --- /dev/null +++ b/.buildpacks @@ -0,0 +1 @@ +heroku/python diff --git a/Procfile b/Procfile new file mode 100644 index 00000000..fb71e0c8 --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: mkdocs build && gunicorn -w 4 -b 0.0.0.0:5000 'whitenoise.run:WhiteNoiseApplication("public")' diff --git a/requirements.txt b/requirements.txt index c75800b8..ebb396e7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,3 +9,5 @@ git+https://github.com/pugong/mkdocs-mermaid-plugin mkdocs-git-authors-plugin mkdocs-git-revision-date-plugin mkdocs-add-number-plugin +gunicorn +whitenoise diff --git a/runtime.txt b/runtime.txt new file mode 100644 index 00000000..1f79d441 --- /dev/null +++ b/runtime.txt @@ -0,0 +1 @@ +python-3.11.7