Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yuuu/rails_application_templates
https://github.com/yuuu/rails_application_templates
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/yuuu/rails_application_templates
- Owner: yuuu
- Created: 2018-05-29T07:03:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-05-30T06:31:47.000Z (over 6 years ago)
- Last Synced: 2024-11-09T12:49:50.851Z (2 months ago)
- Language: Ruby
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rails Application Templates
My Rails application templates
## Usage
```
$ mkdir YOUR_RAILS_PROJECT && cd YOUR_RAILS_PROJECT
$ bundle init
$ bundle install --path vendor/bundle --jobs=4
```for postgres
```
$ bundle exec rails new . --database=postgresql --skip-test-unit -m https://raw.githubusercontent.com/yuuu/rails-application-templates/master/app_template.rb
```for mysql
```
$ bundle exec rails new . --database=mysql --skip-test-unit -m https://raw.githubusercontent.com/yuuu/rails-application-templates/master/app_template.rb
```