https://github.com/zkan/rails-tutorial
https://github.com/zkan/rails-tutorial
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zkan/rails-tutorial
- Owner: zkan
- License: mit
- Created: 2023-04-11T04:55:17.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-06-22T05:04:16.000Z (about 1 year ago)
- Last Synced: 2025-06-22T05:27:29.072Z (about 1 year ago)
- Language: Ruby
- Size: 229 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rails Tutorial
## Hello App
```bash
rails _7.0.4_ new hello_app --skip-bundle
```
## Toy App
```bash
rails _7.0.4_ new toy_app --skip-bundle
```
## Sample App
```bash
rails _7.0.4_ new sample_app --skip-bundle
```
## Simple Hotwire
Ref: [Learn Hotwire by building the simplest possible Hotwire and Ruby on Rails
app - a beginners
guide.](https://railsnotes.xyz/blog/the-simplest-ruby-on-rails-and-hotwire-app-possible-beginners-guide)
```bash
rails new simple_hotwire --css tailwind
```