https://github.com/blackbaba/the_rails_tutorial_projects
Project Work for Rails 6 Tutorial by Michael Hartl
https://github.com/blackbaba/the_rails_tutorial_projects
javascript ruby ruby-on-rails webpack
Last synced: 3 months ago
JSON representation
Project Work for Rails 6 Tutorial by Michael Hartl
- Host: GitHub
- URL: https://github.com/blackbaba/the_rails_tutorial_projects
- Owner: blackbaba
- Created: 2020-02-28T14:33:31.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T17:40:56.000Z (over 3 years ago)
- Last Synced: 2025-09-05T06:38:46.551Z (10 months ago)
- Topics: javascript, ruby, ruby-on-rails, webpack
- Language: Ruby
- Size: 1.29 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 35
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ruby on Rails Tutorial sample application
This is the sample application for
[_Ruby on Rails Tutorial:
Learn Web Development with Rails_](https://www.railstutorial.org/)
(6th Edition)
by [Michael Hartl](https://www.michaelhartl.com/).
## License
All source code in the [Ruby on Rails Tutorial](https://www.railstutorial.org/)
is available jointly under the MIT License and the Beerware License. See
[LICENSE.md](LICENSE.md) for details.
## Getting started
To get started with the app, clone the repo and then install the needed gems:
```
$ bundle install --without production
```
Next, migrate the database:
```
$ rails db:migrate
```
Finally, run the test suite to verify that everything is working correctly:
```
$ rails test
```
If the test suite passes, you'll be ready to run the app in a local server:
```
$ rails server
```
For more information, see the
[_Ruby on Rails Tutorial_ book](https://www.railstutorial.org/book).