https://github.com/micrum/course-app
Demo application for Ruby on Rails course
https://github.com/micrum/course-app
Last synced: 3 months ago
JSON representation
Demo application for Ruby on Rails course
- Host: GitHub
- URL: https://github.com/micrum/course-app
- Owner: micrum
- Created: 2015-02-19T21:56:54.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-29T20:56:40.000Z (about 11 years ago)
- Last Synced: 2025-03-23T03:18:38.462Z (over 1 year ago)
- Language: Ruby
- Homepage: https://course-app.herokuapp.com
- Size: 309 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Demo application for Ruby on Rails course
Course repo https://github.com/micrum/course
## Getting started
#### Clone repository
$ git clone https://github.com/micrum/course-app.git
$ cd course-app
#### Upgrade RVM, install ruby, create a gemset
$ rvm get head && rvm reload
$ rvm install ruby-2.2.0
$ rvm use 2.2.0@course
$ rvm --rvmrc --create 2.2.0@course
#### Install app dependencies
$ gem install bundler && bundle install
##### Install and config PostgreSQL
$ sudo apt-get install postgresql
$ sudo su postgres
$ createuser -s username
**Create database & update DB schema**
$ rake db:create
$ rake db:migrate