Sem descrição

Chris Oliver c0d18ac2b8 Merge branch 'master' of github.com:excid3/spark-clone há 6 anos atrás
app 62f80f51e8 Merge branch 'master' of github.com:excid3/jumpstart há 6 anos atrás
config aea6b4e0ee Configure ActionCable to authenticate with Devise and use Redis by default há 6 anos atrás
lib 63d6cd3bd0 Add some basic scaffold overrides that use Bootstrap há 6 anos atrás
.gitignore d538d2e5b3 Added sitemap generator (#50) há 6 anos atrás
LICENSE 4afd959fff Create LICENSE (#31) há 6 anos atrás
Procfile b24e7c435b Refactor a bit. Adds Sidekiq, Webpacker, and Foreman. há 7 anos atrás
README.md ddced9025b Update README.md há 6 anos atrás
template.rb c5d3193ca4 Update gems and add local_time há 6 anos atrás

README.md

Rails Jumpstart

It's like Laravel Spark, for Rails. All your Rails apps should start off with a bunch of great defaults.

Note: Requires Rails 5.2

Getting Started

Jumpstart is a Rails template, so you pass it in as an option when creating a new app.

Creating a new app

rails new myapp -d postgresql -m https://raw.githubusercontent.com/excid3/jumpstart/master/template.rb

Or if you have downloaded this repo, you can reference template.rb locally:

rails new myapp -d postgresql -m template.rb

Cleaning up

rails db:drop
spring stop
cd ..
rm -rf myapp