diff options
-rw-r--r-- | .buildpacks | 2 | ||||
-rw-r--r-- | Aptfile | 6 | ||||
-rw-r--r-- | Procfile | 2 | ||||
-rw-r--r-- | runtime.txt | 1 |
4 files changed, 11 insertions, 0 deletions
diff --git a/.buildpacks b/.buildpacks new file mode 100644 index 0000000..a9e3887 --- /dev/null +++ b/.buildpacks @@ -0,0 +1,2 @@ +heroku-community/apt +heroku/python @@ -0,0 +1,6 @@ +build-essential +libpq-dev +libxml2-dev +libxslt1-dev +zlib1g-dev +python3-dev diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..c7a241e --- /dev/null +++ b/Procfile @@ -0,0 +1,2 @@ +web: gunicorn takahe.wsgi:application --workers 8 +worker: python manage.py runstator diff --git a/runtime.txt b/runtime.txt new file mode 100644 index 0000000..335156c --- /dev/null +++ b/runtime.txt @@ -0,0 +1 @@ +python-3.11.0 |