https://github.com/lewagon/rails-templates
Jump start your Rails development with Le Wagon best practices
https://github.com/lewagon/rails-templates
Last synced: 6 days ago
JSON representation
Jump start your Rails development with Le Wagon best practices
- Host: GitHub
- URL: https://github.com/lewagon/rails-templates
- Owner: lewagon
- License: mit
- Created: 2015-08-23T19:48:19.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-06-18T16:41:24.000Z (10 months ago)
- Last Synced: 2025-04-01T17:19:14.710Z (13 days ago)
- Language: Ruby
- Homepage: https://www.lewagon.com
- Size: 345 KB
- Stars: 672
- Watchers: 26
- Forks: 283
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Open-Source-Ruby-and-Rails-Apps - rails-templates (lewagon) - Jump start your Rails development with Le Wagon best practices 🔥 (Happy Exploring 🤘)
README
# Rails Templates
Quickly generate a rails app with the default [Wagon](https://www.lewagon.com) configuration
using [Rails Templates](http://guides.rubyonrails.org/rails_application_templates.html).⚠️ The following templates have been made for Rails 7. If you use Rails 6, please refer to the [`no-update` branch templates](https://github.com/lewagon/rails-templates/tree/no-update)
## Minimal
Get a minimal rails app ready to be deployed on Heroku with Bootstrap, Simple form and debugging gems.
```bash
rails new \
-d postgresql \
-m https://raw.githubusercontent.com/lewagon/rails-templates/master/minimal.rb \
CHANGE_THIS_TO_YOUR_RAILS_APP_NAME
```## Devise
Same as minimal **plus** a Devise install with a generated `User` model.
```bash
rails new \
-d postgresql \
-m https://raw.githubusercontent.com/lewagon/rails-templates/master/devise.rb \
CHANGE_THIS_TO_YOUR_RAILS_APP_NAME
```