Aucune description

Chris Oliver a2ffcbb047 Merge branch 'master' of github.com:excid3/spark-clone il y a 5 ans
app 1ebcda7065 Migrate user names to basecamp/name_of_person il y a 5 ans
config aea6b4e0ee Configure ActionCable to authenticate with Devise and use Redis by default il y a 6 ans
lib 63d6cd3bd0 Add some basic scaffold overrides that use Bootstrap il y a 6 ans
.gitignore d538d2e5b3 Added sitemap generator (#50) il y a 6 ans
LICENSE 4afd959fff Create LICENSE (#31) il y a 6 ans
Procfile b24e7c435b Refactor a bit. Adds Sidekiq, Webpacker, and Foreman. il y a 7 ans
README.md 2a4329baba Add requirements list. Closes #55 il y a 5 ans
template.rb a2ffcbb047 Merge branch 'master' of github.com:excid3/spark-clone il y a 5 ans

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.

Requirements

You'll need the following installed to run the template successfully:

  • Ruby 2.5+
  • bundler - gem install bundler
  • rails - gem install rails
  • Yarn - brew install yarn or Install Yarn

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