Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/todd-demone/sample-app
The third project for the Ruby on Rails Tutorial by Michael Hartl. This project serves as the basis for chapters 3-14 of the tutorial.
https://github.com/todd-demone/sample-app
rails-tutorial ruby ruby-on-rails tutorial
Last synced: 16 days ago
JSON representation
The third project for the Ruby on Rails Tutorial by Michael Hartl. This project serves as the basis for chapters 3-14 of the tutorial.
- Host: GitHub
- URL: https://github.com/todd-demone/sample-app
- Owner: todd-demone
- Created: 2017-05-01T12:40:04.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-05-09T16:57:46.000Z (over 7 years ago)
- Last Synced: 2024-10-17T09:43:36.743Z (about 1 month ago)
- Topics: rails-tutorial, ruby, ruby-on-rails, tutorial
- Language: Ruby
- Size: 201 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ruby on Rails Tutorial
## Sample Application (Twitter clone) [DRAFT]
View the application at this [*site*](https://infinite-dusk-60144.herokuapp.com/).
This is the third application in the
[*Ruby on Rails Tutorial*](http://www.railstutorial.org/)
by [Michael Hartl](http://www.michaelhartl.com/).## License
All source code in the [Ruby on Rails Tutorial](http://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](http://www.railstutorial.org/book).RPi3