https://github.com/ayushexploring/tooter
A social site built on Ruby on Rails
https://github.com/ayushexploring/tooter
full-stack michael-hartl rails-tutorial restful-api restful-webservices ruby ruby-on-rails ruby-on-rails-6 ruby-on-rails-tutorial web-development
Last synced: 3 months ago
JSON representation
A social site built on Ruby on Rails
- Host: GitHub
- URL: https://github.com/ayushexploring/tooter
- Owner: ayushexploring
- Created: 2019-12-03T18:28:04.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T16:39:40.000Z (over 3 years ago)
- Last Synced: 2025-04-03T20:18:35.638Z (about 1 year ago)
- Topics: full-stack, michael-hartl, rails-tutorial, restful-api, restful-webservices, ruby, ruby-on-rails, ruby-on-rails-6, ruby-on-rails-tutorial, web-development
- Language: Ruby
- Homepage:
- Size: 1.12 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 37
-
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).