Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yazumoto/rails-boilerplate
https://github.com/yazumoto/rails-boilerplate
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/yazumoto/rails-boilerplate
- Owner: yazumoto
- Created: 2018-09-17T16:30:54.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-11T23:53:40.000Z (almost 2 years ago)
- Last Synced: 2024-10-19T14:41:35.257Z (3 months ago)
- Language: Ruby
- Size: 201 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rails Boilerplate
This repository is boilerplate for rails api developers.
You can start your rails app without any annoying commit logs.# Versions
```
Ruby: 2.6.3
Rails: 5.2.3
```# What is installed?
Rails Boilerplate install and setup some gems.
- activerecord-session_store
- Use DB for session store.
- You can easily sync your sessions in multiple servers by db.
- dotenv-rails
- configure secret information(which you don't want to up in git)
- config
- configure environment settings
- kaminari
- Easy Paging
- pry-rails
- Easy Debugs
- factory_bot_rails
- Easy Creating Test Data
- rubocop
- Lint your project
- rspec-rails
- Easy testing
- spring-commands-rspec
- Speedup Rspec using spring
- annotate
- Add columns comment to your model file
- rails-erd
- Make ER diagram for your project
- healthcheck_Rails
- Create healthcheck route
- rspecz
- Extend RSpec
- api_modules
- Modules for APIs# Setup
- ApplicationName
- change `config/application.rb:9`# Usage
## Initialize your app
```
hg clone [email protected]:seteen/rails-boilerplate.git
# Start your git project
git init
```## Update your app
```
hg pull
hg up
# resolve conflicts
```