From cc8e9aa6e635fd5077aa61184f692e40e9af31a2 Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Wed, 20 Apr 2016 20:10:02 +0900 Subject: [PATCH] Add a Procfile for starting all dev processes at once This can be used with tools like Foreman [1] to start a web server and the asset compilation from one console. [1] http://ddollar.github.io/foreman/ --- Procfile | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Procfile diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..6382b2c --- /dev/null +++ b/Procfile @@ -0,0 +1,3 @@ +web: vendor/bin/ppm start +forum: cd vendor/flarum/core/js/forum && gulp watch +admin: cd vendor/flarum/core/js/admin && gulp watch