I am new to thin form. I have a ruby ββon the rails. Today I can start the application normally, with the command
sudo thin start -d
We have created a new database for tests. (one is a pure database, and the other is for testing, so it can be confused) in the database.yml file.
I would like to run the same application on two different ports using different databases.
To start the application with the database, I can use the ENV option:
sudo thin start -d -e production -p 3040
This is normal. But when I try to start a βnormalβ server, it says that thins is already running. How could I run both applications in a thin ame command. Is there a way to make a configuration file for this?
source share