Rails Templates
Our templates offer a rich boilerplate to jump start Rails-based application development and are based on our experience with building complex applications over the years.
- Install ruby and set your local ruby version to
2.7.2
- Install rails >
6.0.0
, recommended version6.1.3.1
In order to use the template, initialize a new app with the following parameters:
rails new <app_name> -m https://raw.githubusercontent.com/nimblehq/rails-templates/master/template.rb
Supported template options:
--api
- create an api-only application
To apply the template on an existing application, run following rails command:
rails app:template LOCATION=https://raw.githubusercontent.com/nimblehq/rails-templates/master/template.rb
# To apply on an api application
rails app:template LOCATION=https://raw.githubusercontent.com/nimblehq/rails-templates/master/template.rb API=true
# To apply a specific addon
rails app:template LOCATION=https://raw.githubusercontent.com/nimblehq/rails-templates/master/template.rb ADDON=<addon name>
Available Addons:
docker
nginx
phrase_app
semaphore
bootstrap
slim
devise
Read more about Rails Application Template in the official Rails Guides.
.
├── .template
│ ├── addons
│ │ └── docker
│ │ ├── ...
│ │ └── template.rb
│ └── variants
│ ├── api
│ │ ├── ...
│ │ └── template.rb
│ └── web
│ ├── ...
│ └── template.rb
├── app
├── bin
├── config
├── spec
├── ...
├── README.md
├── README.md.tt
└── template.rb
We keep the Rails-app-like structure. On the root, there are base project file templates.
Other files including the template options are in .template
folder.
There are 2 kinds of the template options:
-
Variants - For the app main options, which are
web
andapi
. -
Addons - For other extra options that we can add to the project like
docker
orbootstrap
, use the promptask
to generate a question before generating the project.
There are 2 template file types:
-
.tt
filesThis file is used for templating the whole new file. In case if we want to create a new file that Rails does not generated.
-
.rb
filesThis is used for modifying the files that Rails has generated. The file name should be the same as on the generated app. If it is not a ruby file, append the
.rb
as an extension e.g.Gemfile.rb
We are using Serverspec to test the template. For any changes made, you must add a spec for it.
Test files are located under .template/spec
folder
.
├── ...
├── .template
│ ├── ...
│ ├── spec
│ │ └── addons
│ │ │ └── base
│ │ │ │ └── docker
│ │ │ │ │ ├── ...
│ │ │ │ │ └── template_spec.rb
│ │ │ │ └── semaphore
│ │ │ │ │ ├── ...
│ │ │ │ │ └── template_spec.rb
│ │ │ └── variants
│ │ │ │ └── web
│ │ │ │ │ └── boostrap
│ │ │ │ │ ├── ...
│ │ │ │ │ └── template_spec.rb
│ │ │ │ └── api
│ │ │ │ │ └── addon
│ │ │ │ │ ├── ...
│ │ │ │ │ └── template_spec.rb
│ │ └── base
│ │ │ ├── ...
│ │ │ └── template_spec.rb
│ │ └── variants
│ │ │ └── web
│ │ │ │ ├── ...
│ │ │ │ └── template_spec.rb
│ │ │ └── api
│ │ │ │ ├── ...
│ │ │ │ └── template_spec.rb
This project is Copyright (c) 2014 and onwards. It is free software, and may be redistributed under the terms specified in the LICENSE file.
This project is maintained and funded by Nimble.
We love open source and do our part in sharing our work with the community! See our other projects or hire our team to help build your product.