Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/useflyyer/flyyer-example-rails

Example using Rails 5 and Flyyer.io | https://docs.flyyer.io/guides/ruby/rails
https://github.com/useflyyer/flyyer-example-rails

flyyer og-images rails seo twitter-cards

Last synced: about 1 month ago
JSON representation

Example using Rails 5 and Flyyer.io | https://docs.flyyer.io/guides/ruby/rails

Awesome Lists containing this project

README

        

# example-rails

* Docs and How-to: https://docs.flyyer.io/guides/ruby/rails

For development, run:

```bash
bundle install
rails s
```

Then go to http://localhost:3000

---

Created with the settings for a minimal Ruby on Rails app:

```bash
rails new \
--database sqlite3 \
--minimal \
--skip-keeps \
--skip-action-mailer \
--skip-action-mailbox \
--skip-action-text \
--skip-active-storage \
--skip-puma \
--skip-action-cable \
--skip-sprockets \
--skip-spring \
--skip-listen \
--skip-javascript \
--skip-turbolinks \
--skip-test \
--skip-system-test \
--skip-bootsnap \
--skip-webpack-install \
rails-example
```