cortex-cms/cortex-starter

View on GitHub
Procfile.dev

Summary

Maintainability
Test Coverage
# You can run these commands in separate shells instead of using foreman
web: bin/rails server -p 3000
worker: bundle exec sidekiq --config ./config/sidekiq.yml

# Next line runs a watch process with webpack to compile the changed files.
# When making frequent changes to client side assets, you will prefer building webpack assets
# upon saving rather than when you refresh your browser page.
client: sh -c 'rm -rf public/packs/* || true && bin/rails react_on_rails:locale && bin/webpack -w'