Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/astechedu/rails
RubyOnRails Framework
https://github.com/astechedu/rails
rails-application rails-tutorial ruby ruby-on-rails rubyonrails
Last synced: 3 days ago
JSON representation
RubyOnRails Framework
- Host: GitHub
- URL: https://github.com/astechedu/rails
- Owner: astechedu
- Created: 2022-02-11T18:24:37.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-02-12T14:11:16.000Z (over 2 years ago)
- Last Synced: 2024-10-17T09:40:01.448Z (20 days ago)
- Topics: rails-application, rails-tutorial, ruby, ruby-on-rails, rubyonrails
- Language: Ruby
- Homepage:
- Size: 154 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rials Installation
To develop a web application using Ruby on Rails Framework, you need to install the following software −
Ruby
The Rails Framework
A Web Server
A Database SystemRails Installation on Windows
Step 1: Check Ruby Version. First, check if you already have Ruby installed. ...
Step 2: Install Ruby
Step 3: Install Rails
Step 4: Check Rails Version# Step 1: Check Ruby Version
ruby -v
gem --version# Step 2: Install Ruby
Download rubyinstaller-2.2.2.x.exe (According to requirement)
# Step 3: Install Rails
C:\> gem install rails
C:\> rails --version# Step 4: Check Rails Version
C:\> rails -v
## Creating the Blog Application
C:\> rails new blog
C:\> cd blog## Starting up the Web Server
C:\> bin/rails server
OR
Read Document RubyOnRails Framework Installation
:+1: