From e13de3c0ca31f595c9a48ad237352aafd6a97a82 Mon Sep 17 00:00:00 2001 From: Roy Kaldung Date: Thu, 3 Dec 2015 10:03:08 +0100 Subject: [PATCH] packager.io config --- .pkgr.yml | 17 +++++++++++++++++ Procfile | 3 +++ 2 files changed, 20 insertions(+) create mode 100644 .pkgr.yml create mode 100644 Procfile diff --git a/.pkgr.yml b/.pkgr.yml new file mode 100644 index 000000000..034f6d0ae --- /dev/null +++ b/.pkgr.yml @@ -0,0 +1,17 @@ +targets: + centos-7: + dependencies: + - httpd + - mariadb-server + +user: "zammad" +group: "zammad" + +after_install: packaging/hooks/postinstall.sh + +env: + - RAILS_ENV=development + - RAILS_GROUPS=assets + +notifications: false + diff --git a/Procfile b/Procfile new file mode 100644 index 000000000..14b3f5f12 --- /dev/null +++ b/Procfile @@ -0,0 +1,3 @@ +web: puma -p 3000 +worker: script/scheduler.rb +websocket: script/websocket-server.rb \ No newline at end of file