https://github.com/od-c0d3r/sampleapp
Ruby on Rails Tut
https://github.com/od-c0d3r/sampleapp
rails-tutorial ruby-on-rails
Last synced: about 2 months ago
JSON representation
Ruby on Rails Tut
- Host: GitHub
- URL: https://github.com/od-c0d3r/sampleapp
- Owner: od-c0d3r
- Created: 2021-04-30T08:54:11.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-08-05T07:45:47.000Z (almost 4 years ago)
- Last Synced: 2025-02-13T13:52:58.901Z (3 months ago)
- Topics: rails-tutorial, ruby-on-rails
- Language: Ruby
- Homepage:
- Size: 393 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
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/).## Application qualities
- Login, Sign-up and Authentication system.
- Posting and commenting system.## 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:
```
$ gem install bundler -v 2.2.15
$ bundle _2.2.15_ config set --local without 'production'
$ bundle _2.2.15_ install
```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).