An open API service indexing awesome lists of open source software.

https://github.com/icostan/3dp

Fast bootstrap Ruby/Rails projects in just 3 days.
https://github.com/icostan/3dp

mongodb rails rspec ruby

Last synced: 3 months ago
JSON representation

Fast bootstrap Ruby/Rails projects in just 3 days.

Awesome Lists containing this project

README

          

# 3dp [![Build Status](https://travis-ci.org/icostan/3dp.svg)](https://travis-ci.org/icostan/3dp)
3 Days Project

## Generation
Generate new rails app:
```shell
rails new blog -m ~/Projects/3dp/rails-template.rb --skip-test-unit --skip-spring --skip-turbolinks
```

Enhance existing app:
```shell
bundle exec rake app:template LOCATION=~/Projects/3dp/rails-template.rb
```

Generate default scaffold:
```shell
rails g scaffold post boolean:boolean email url phone password search uuid text:text file hidden integer:integer float:float range:range date:date time:time country time_zone
```