28 lines
517 B
Markdown
28 lines
517 B
Markdown
# Hello Ruby on Rails
|
|
|
|
Likely need to start with `bundle` to install gems for any project you wish to run.
|
|
|
|
## Blog
|
|
|
|
Following [this tutorial from rubyonrails.org](https://guides.rubyonrails.org/getting_started.html#hello-rails-bang).
|
|
|
|

|
|
|
|
```bash
|
|
cd blog
|
|
bin/rails server
|
|
```
|
|
|
|
Launches a web server.
|
|
|
|
## Bookstore
|
|
|
|
Following [this tutorial from bmoreonrails](https://bmoreonrails.github.io/rails_tutorial/)
|
|
|
|

|
|
|
|
```bash
|
|
cd bookstore
|
|
bin/rails server
|
|
```
|
|
|