Created
July 25, 2023 14:53
-
-
Save joekrump/a47b09c8572071dd30457c4066cee7fa to your computer and use it in GitHub Desktop.
Procfile setup for Rails & Vite app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
redis: redis-server # optional. Comment out if you are not using redis | |
web: bin/rails server -p 3000 | |
worker: bundle exec sidekiq # optional. Comment out if you are not using sidekiq for background jobs | |
vite: bundle exec bin/vite dev |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Run with something like Overmind
Ex.
overmind start -f Procfile