https://github.com/gmac/muppets-api
https://github.com/gmac/muppets-api
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gmac/muppets-api
- Owner: gmac
- Created: 2015-08-03T01:53:47.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-03T02:06:41.000Z (almost 10 years ago)
- Last Synced: 2025-03-26T22:12:48.033Z (4 months ago)
- Language: Ruby
- Size: 219 KB
- Stars: 1
- Watchers: 1
- Forks: 7
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Getting Started...
To follow along, you'll need to have Rails 4.x and PostgreSQL installed. If you do NOT have these tools available, then work with a partner who has them.
### 1. Clone
```
git clone https://github.com/gmac/muppets-api.git
```Or, fork this repo and clone down your own copy.
### 2. Setup
```
cd muppets-api
bundle installrake db:create
rake db:migrate
rake db:seed
```### 3. Start
```
rails s
```Then go to `localhost:3000/muppets`. Once you're up and running, take 15 minutes to review this application's Rails configuration with a partner. It should look very familiar... the existing routes, controllers, and views are structured as a boilerplate Rails CRUD application.