Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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