Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cyyeh/rails-starter-app-with-haml-devise-bootstrap
This is my customized rails starter app(Ruby 2.4, Rails 5.1+) with these extended default settings: haml(template engine), devise(authentication system), bootstrap(website theme)
https://github.com/cyyeh/rails-starter-app-with-haml-devise-bootstrap
bootstrap devise haml-rails rails rails5 ruby-on-rails starter-app
Last synced: 2 days ago
JSON representation
This is my customized rails starter app(Ruby 2.4, Rails 5.1+) with these extended default settings: haml(template engine), devise(authentication system), bootstrap(website theme)
- Host: GitHub
- URL: https://github.com/cyyeh/rails-starter-app-with-haml-devise-bootstrap
- Owner: cyyeh
- License: mit
- Created: 2018-04-15T14:44:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-04-15T14:48:59.000Z (over 6 years ago)
- Last Synced: 2024-11-10T05:19:15.630Z (about 1 month ago)
- Topics: bootstrap, devise, haml-rails, rails, rails5, ruby-on-rails, starter-app
- Language: Ruby
- Size: 35.2 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rails Starter App
**Don't Repeat Yourself** is the main reason I make this repo!
This is my customized rails starter app(Ruby 2.4, Rails 5.1+) with these changed default settings:
- move `gem 'sqlite3'` to `group :development :test`
- add `gem 'pg'` to `group :production`
- add `gem 'haml-rails'` (use haml as default template engine rather than erb, since haml makes html file smaller and make you more productive)
- add `gem 'devise'` (use devise as authentication system)
- add `gem 'twitter-bootstrap-rails'` (use bootstrap as default website theme)
- add `gem 'jquery-rails'` (Rails 5.1+ needs this gem if using bootstrap)
- add `gem 'devise-bootstrap-views'` (make devise also in bootstrap theme)