Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/useflyyer/flyyer-example-rails
- Owner: useflyyer
- Created: 2021-08-07T16:04:21.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-19T21:40:45.000Z (almost 2 years ago)
- Last Synced: 2023-03-05T06:49:19.455Z (almost 2 years ago)
- Topics: flyyer, og-images, rails, seo, twitter-cards
- Language: Ruby
- Homepage: https://docs.flyyer.io/guides/ruby/rails
- Size: 153 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
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
```