Downloads: 107
Generate Rails applications without the command-line. This tool is a simplified interface to select the configurations you need in just a few clicks.
CSS & JS Processor options coming soon...
cd into your generated project's directory.
cd
Run bundle install to install required gems.
bundle install
Open config/database.yml and update the database configurations as needed.
config/database.yml
Run the following commands to set up your database:
rails db:prepare
rails db:migrate
Start your server with rails s.
rails s
Open your browser and navigate to http://localhost:3000 to see your new application in action!
http://localhost:3000