Skip to content

Instantly share code, notes, and snippets.

@jerrod
jerrod / Procfile
Created July 18, 2020 15:21 — forked from 0xjmp/Procfile
How to set up a Rails and Webpack app for fun and profit
api: sh -c "cd api && bundle exec rails s -p5000"
nginx: /usr/bin/nginx -c nginx.conf
client: sh -c "cd client && npm start"