https://github.com/richardhpa/ruby-on-rails-tutorial
Following basic ruby on rails tutorial
https://github.com/richardhpa/ruby-on-rails-tutorial
rails ruby ruby-on-rails
Last synced: over 1 year ago
JSON representation
Following basic ruby on rails tutorial
- Host: GitHub
- URL: https://github.com/richardhpa/ruby-on-rails-tutorial
- Owner: RichardHpa
- Created: 2019-11-12T07:19:48.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-06-16T14:10:11.000Z (about 5 years ago)
- Last Synced: 2025-03-04T07:40:28.106Z (over 1 year ago)
- Topics: rails, ruby, ruby-on-rails
- Language: Ruby
- Homepage:
- Size: 2.27 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ruby on Rails Tutorial
This is a project created in Ruby on Rails, following a tutorial by [Traversy Media.](https://www.youtube.com/watch?v=pPy0GQJLZUM)
## Prerequisites
Make sure you have installed all of the following prerequisites on your development machine:
* Git - [Download & Install Git](https://git-scm.com/downloads). OSX and Linux machines typically have this already installed.
* Ruby - [Download & Install Ruby](https://www.ruby-lang.org/en/downloads/). If you encounter any problems, you can also use this [RVM](https://rvm.io/) to install Ruby.
* Rails - [Download & Install Rails](http://railsinstaller.org/en).
* Ruby Gem - [Download & Install Ruby Gem](https://rubygems.org/pages/download).
## Installing
#### Cloning The GitHub Repository
The recommended way to use this application is to clone it.
```bash
$ git clone https://github.com/RichardHpa/Ruby-on-Rails-Tutorial
$ cd Ruby-on-Rails-Tutorial
```
#### Installing Dependencies
Install all of the dependencies needed using Gem
```bash
$ gem install
```
## Viewing your Application
To start the app on [http://localhost:3000/](http://localhost:3000/) you need to turn call the command bellow.
```bash
$ rails s
```
## Commands to remember
```bash
$ rails g controller $name
```
## License
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details
## Acknowledgments
* This repository follows the[Ruby On Rails In 60 Minutes](https://www.youtube.com/watch?v=pPy0GQJLZUM) tutorial by [Traversy Media](https://www.youtube.com/channel/UC29ju8bIPH5as8OGnQzwJyA)