achmiral / rails-templates

Our optimized Rails templates used in our projects

Home Page:https://nimblehq.co

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nimble logo

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.

Get Started

Requirements

  • Install ruby and set your local ruby version to 3.0.1
  • Install rails 7.0.1
  • Install node 16.13.2 (For creating web application)

πŸ“ If running on Apple M1, to build docker image, please make sure to set platform to AMD64 by export DOCKER_DEFAULT_PLATFORM=linux/amd64

Use the template

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/main/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/main/template.rb

# To apply on an api application
rails app:template LOCATION=https://raw.githubusercontent.com/nimblehq/rails-templates/main/template.rb API=true

# To apply a specific addon
rails app:template LOCATION=https://raw.githubusercontent.com/nimblehq/rails-templates/main/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.

How to contribute

Template structure

.
β”œβ”€β”€ .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:

  1. Variants - For the app main options, which are web and api.

  2. Addons - For other extra options that we can add to the project like docker or bootstrap, use the prompt ask to generate a question before generating the project.

Template files

There are 2 template file types:

  1. .tt files

    This file is used for templating the whole new file. In case if we want to create a new file that Rails does not generated.

  2. .rb files

    This 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

Template specs

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

Template Strings

When using template string with heredoc, use the proper name following the file type / content.

This provides the meaningful context to the content and some IDEs also support to highlight the content depending on the type.

  • DOCKERFILE
  • ERB
  • HTML
  • IGNORE - For any ignore file e.g. .gitignore, .eslintignore
  • JAVASCRIPT
  • JSON
  • PROCFILE
  • RUBY
  • SCSS
  • SHELL

For other files that are not fit the types above, use the extension as the name e.g. TOOL_VERSION for .tool-version file.

For the normal string, name it after the content e.g. ERROR for template error message.

Testing the Template

To run RuboCop against the template:

.template/bin/rubocop

Any RuboCop command options can be passed:

# Run RuboCop with auto correct
.template/bin/rubocop -a

License

This project is Copyright (c) 2014 and onwards. It is free software, and may be redistributed under the terms specified in the LICENSE file.

About

Nimble

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.

About

Our optimized Rails templates used in our projects

https://nimblehq.co

License:MIT License


Languages

Language:Ruby 93.7%Language:Makefile 2.8%Language:Shell 1.4%Language:SCSS 1.0%Language:JavaScript 0.9%Language:Procfile 0.1%