https://github.com/raleighlittles/rubyonrails-tutorial
Full code for Michael Hartl's Ruby on Rails Tutorial!
https://github.com/raleighlittles/rubyonrails-tutorial
michael-hartl rails ruby ruby-on-rails tutorial
Last synced: 10 months ago
JSON representation
Full code for Michael Hartl's Ruby on Rails Tutorial!
- Host: GitHub
- URL: https://github.com/raleighlittles/rubyonrails-tutorial
- Owner: raleighlittles
- Created: 2017-08-14T00:00:59.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-08-19T01:24:29.000Z (over 2 years ago)
- Last Synced: 2025-03-28T08:03:06.923Z (10 months ago)
- Topics: michael-hartl, rails, ruby, ruby-on-rails, tutorial
- Language: Ruby
- Homepage: https://www.railstutorial.org/book
- Size: 372 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About
This repository contains the full codebase from Michael Hartl's [Ruby on Rails Tutorial](https://www.railstutorial.org/).
The final product is in sample_app, and is a miniature social network which takes students through the full features of the Ruby on Rails framework, with a full SQLite backend and a semi-responsive front-end utilizing the Bootstrap theme and Jquery plugins.
The sample app features:
1. User pages with profile pictures
2. Microposts (featuring a 140 character limit, a la Twitter) for users
3. Ability to follow/be followed by users
5. Image uploads for microposts
To run the application, you need a full rails environment, and once that is set up you can simply run
```
$ rails server
```
and launch the sample app on http://localhost:3000.
Note that the sample app was developed for a test mode only, omitting any Heroku/AWS deployment since I intended this tutorial to be a pure introduction to Ruby on Rails itelf.
Here are some screenshots from the application:



I found the tutorial to be highly engaging and extremely informative, and I recommend checking it out. It's available for free online at: https://www.railstutorial.org/book
s