https://github.com/dogoncouch/500words
Incomplete project based on the Ruby on Rails tutorial at https://www.railstutorial.org/
https://github.com/dogoncouch/500words
Last synced: 7 months ago
JSON representation
Incomplete project based on the Ruby on Rails tutorial at https://www.railstutorial.org/
- Host: GitHub
- URL: https://github.com/dogoncouch/500words
- Owner: dogoncouch
- License: other
- Created: 2017-07-27T21:09:28.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-29T21:04:58.000Z (about 8 years ago)
- Last Synced: 2025-01-25T09:27:59.019Z (9 months ago)
- Language: Ruby
- Homepage:
- Size: 139 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.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*](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).