From 6a943a08b234932097a1678ae77bc5d6b86ad9a8 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 28 Jan 2016 15:22:34 -0700 Subject: [PATCH] Add procfile --- Procfile | 1 + requirements.txt | 3 +++ runtime.txt | 1 + 3 files changed, 5 insertions(+) create mode 100644 Procfile create mode 100644 requirements.txt create mode 100644 runtime.txt diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..c00f423 --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: gunicorn config.wsgi:application diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..d119713 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +# This file is here because many Platforms as a Service look for +# requirements.txt in the root directory of a project. +-r requirements/production.txt diff --git a/runtime.txt b/runtime.txt new file mode 100644 index 0000000..294a23e --- /dev/null +++ b/runtime.txt @@ -0,0 +1 @@ +python-3.5.0