Rails Stack - MongoDB
Introduction
This is an introduction of creating rails stack together with MongoDB.
The tech stack includes:
- Rails
- MongoDB
- Bootstrap
- AngularJS
- Bower
- Capistrano
- Nginx
- RSpec
Create a rails application
It seems that TurboLinks
does not play well with AngularJS
. So we will not enable TurboLinks
when we create the rails application.
Since we will use RSpec
, here we skip the test-unit
too (-T
).
rails new -T --skip-turbolinks rails-stack-mongo
You might want to add config/secrets.yml
and config/database.yml
into .gitignore
to avoid expose them.
If you've already checked in those two files and want to remove them. Try the following:
git rm config/secrets.yml config/database.yml
Setup Bower
We will use bower
to manage the front-end libraries, including bootstrap
. So here we need to setup bower
first.
Install Bower
OS X:
sudo npm install -g bower
Ubuntu:
sudo apt-get update
sudo apt-get install nodejs npm
sudo npm install -g bower
sudo ln -s /usr/bin/nodejs /usr/bin/node
In case the git://
protocol is not working in your network, you can let git to replace git://
with https://
.
git config --global url."https://".insteadOf git://
Use Bower in Rails
We will use bower-rails
to mange bower
related actions. The main reason we use this gem instead of using bower
directly is that, this gem provides a helper task rake bower:resolve
to deal with the assets path problem in rails. For example in rails, we might found that the Glyphicons
work well in development, but will raise 404 - not found
on production. By using bower-rails
gem, we can handle such situation easily.
To use this gem, we need to add it into our Gemfile
.
gem 'bower-rails', '~> 0.9.2'
Run bundle install
.
Then run
rails g bower_rails:initialize
This will add Bowerfile
and initializers/bower_rails.rb
.
The Bowerfile
is just like a Gemfile
, but for bower
. It uses an DSL developed to provide similar feel like using bundler.
You might also want to modify you .gitignore
to exclude the libraries managed by bower from your source control.
Here is a sample .gitignore
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile '~/.gitignore_global'
# Ignore bundler config.
/.bundle
# Ignore the default SQLite database.
/db/*.sqlite3
/db/*.sqlite3-journal
# Ignore all logfiles and tempfiles.
/log/*
!/log/.keep
/tmp
### Rails template
*.rbc
capybara-*.html
.rspec
/log
/tmp
/db/*.sqlite3
/db/*.sqlite3-journal
/public/system
/coverage/
/spec/tmp
**.orig
rerun.txt
pickle-email-*.html
# TODO Comment out these rules if you are OK with secrets being uploaded to the repo
config/initializers/secret_token.rb
config/secrets.yml
## Environment normalisation:
/.bundle
/vendor/bundle
# these should all be checked in to normalise the environment:
# Gemfile.lock, .ruby-version, .ruby-gemset
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
.rvmrc
# if using bower-rails ignore default bower_components path bower.json files
/vendor/assets/bower_components
*.bowerrc
bower.json
### SVN template
.svn/
### Windows template
# Windows image file caches
Thumbs.db
ehthumbs.db
# Folder config file
Desktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Windows Installer files
*.cab
*.msi
*.msm
*.msp
# Windows shortcuts
*.lnk
### JetBrains template
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
*.iml
## Directory-based project format:
.idea/
# if you remove the above rule, at least ignore the following:
# User-specific stuff:
# .idea/workspace.xml
# .idea/tasks.xml
# .idea/dictionaries
# Sensitive or high-churn files:
# .idea/dataSources.ids
# .idea/dataSources.xml
# .idea/sqlDataSources.xml
# .idea/dynamic.xml
# .idea/uiDesigner.xml
# Gradle:
# .idea/gradle.xml
# .idea/libraries
# Mongo Explorer plugin:
# .idea/mongoSettings.xml
## File-based project format:
*.ipr
*.iws
## Plugin-specific files:
# IntelliJ
out/
# mpeltonen/sbt-idea plugin
.idea_modules/
# JIRA plugin
atlassian-ide-plugin.xml
# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
### OSX template
.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
._*
# Files that might appear on external disk
.Spotlight-V100
.Trashes
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
Use Bootstrap
Install Bootstrap via Bower
Edit Bowerfile
, add
asset 'bootstrap'
Then run
rake bower:install
to install bootstrap
.
Use Bootstrap in rails
Edit config/application.rb
to add bower_components
into asset pipeline.
config.assets.paths << Rails.root.join('vendor', 'assets', 'bower_components')
# config.assets.paths << Rails.root.join('vendor', 'assets', 'bower_components', 'bootstrap', 'dist', 'fonts')
config.assets.precompile << %r(.*.(?:eot|svg|ttf|woff|woff2)$)
Edit app/assets/javascripts/application.js
//= require bootstrap/dist/js/bootstrap
Edit app/assets/stylesheets/application.css
*= require bootstrap/dist/css/bootstrap
Fix bootstrap fonts missing issue
Edit config/initializers/bower_rails.rb
, set bower_rails.resolve_before_precompile = true
. This will run rake bower:resolve
before compile. It will replace the url()
in the css with <%= asset_path() %>
helper.
Verify that Bootstrap works in Development
First we need to add a verification page.
rails g controller page index
Edit apps/views/page/index.html.erb
Start rails in development mode:
rails s
Access http://localhost:3000/page/index
to make sure that Bootstrap works well in development mode.
Verify Bootstrap works in production mode
Edit config/secrets.yml
to generate secret_key_base which is required to start WEBrick in produciton mode.
rake secret
Precompile assets from production
RAILS_ENV=production rake assets:clobber
RAILS_ENV=production rake assets:clean
RAILS_ENV=production rake assets:precompile
Start WEBrick in production mode
RAILS_SERVE_STATIC_FILES=true rails s -e production
Note:
RAILS_SERVE_STATIC_FILES=true
is added here because by default static files like *.css will not beserved by WEBrick in produciton mode. Checkconfig.serve_static_files
inconfig/environments/production.rb
for more details.
Access http://localhost:3000/page/index
to make sure that Bootstrap works well in production mode.
Use MongoDB
Use Mongoid
as ORM driver. Edit Gemfile
,
gem 'mongoid', '~> 4.0.0'
Then run bundle install
.
Create mongoid.yml
.
rails g mongoid:config
Create Controller
rails g scaffold Task name:string description:text status:string
Restart your WEBrick server.
Setup to use Bootstrap theme
Checkout Bootstrap's sample to setup the basic theme.
Edit app/views/layouts/application.html.erb
,
Rivendell
<%= stylesheet_link_tag 'application', media: 'all' %>
<%= csrf_meta_tags %>
<%= yield %>
<%= javascript_include_tag 'application' %>
Note:
<%= javascript_include_tag 'application' %>
is put at the bottom to speed up the page loading.