You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Foreman is a very simple gem that lets you automate what servers to start up for your app.
In the case of my previous film project, we needed Rails Server, Solr Server (for search indexes) and Redis Server (for caching) running.
If we didn't use foreman, the above would require 3 difference commands to get up-and-running. With foreman, you just type foreman start [filename] and all the servers get started together.
The text was updated successfully, but these errors were encountered:
Foreman is a very simple gem that lets you automate what servers to start up for your app.
In the case of my previous film project, we needed Rails Server, Solr Server (for search indexes) and Redis Server (for caching) running.
If we didn't use foreman, the above would require 3 difference commands to get up-and-running. With foreman, you just type
foreman start [filename]
and all the servers get started together.The text was updated successfully, but these errors were encountered: