mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
Add procfile for frontend development. It adds guard livereload that reloads and recompiles the frontend files when a change occurs. It also adds gulp that watches for changes to the icon set and rebundles the icons into a svg store while stripping two colors from them that can then be replaced via css. Run via `foreman start -f Procfile.frontend`
5 lines
No EOL
196 B
Text
5 lines
No EOL
196 B
Text
web: bundle exec puma -p 3000
|
|
worker: bundle exec script/scheduler.rb start -t
|
|
websocket: bundle exec script/websocket-server.rb start
|
|
guard: bundle exec guard -P livereload
|
|
gulp: bundle exec gulp |