From 994841d371a58102611e896bdeed53fde6bc47c2 Mon Sep 17 00:00:00 2001 From: Chris Hartjes Date: Fri, 29 Nov 2019 12:30:29 -0500 Subject: [PATCH] Starting to build out support for deploying to Heroku --- Procfile | 1 + app.json | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 Procfile create mode 100644 app.json diff --git a/Procfile b/Procfile new file mode 100644 index 000000000..1af0199f4 --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: heroku-php-apache2 web/ diff --git a/app.json b/app.json new file mode 100644 index 000000000..9c5e32d3e --- /dev/null +++ b/app.json @@ -0,0 +1,15 @@ +{ + "name": "OpenCFP", + "description": "A Web-based Call For Papers Management application", + "repository": "https://github.com/opencfp/opencfp", + "logo": "https://raw.githubusercontent.com/opencfp/opencfp/master/docs/img/banner.png", + "keywords": ["PHP", "CFP"], + "scripts": { + "postdeploy": "./script/setup" + }, + "env": { + "CFP_ENV": { + "value": "production" + } + } +}