https://github.com/mscoutermarsh/blogger-app
Example Rails app w/performance issues
https://github.com/mscoutermarsh/blogger-app
Last synced: 12 months ago
JSON representation
Example Rails app w/performance issues
- Host: GitHub
- URL: https://github.com/mscoutermarsh/blogger-app
- Owner: mscoutermarsh
- Created: 2014-07-27T18:56:41.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-08-10T05:05:51.000Z (almost 12 years ago)
- Last Synced: 2025-06-28T00:54:13.581Z (12 months ago)
- Language: Ruby
- Size: 395 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Blogger App
Sample Rails App
## Requirements
Postgres & Ruby 2.1.2
## Installation
```
$ git clone https://github.com/mscoutermarsh/blogger-app
$ cd blogger-app
$ bundle install
```
Run migrations and seed the database:
```
$ rake db:create && rake db:migrate && rake db:seed
```
Run the app locally:
```
$ bundle exec rails s
```
## Push to Heroku
```
$ heroku create
$ git push heroku master
$ heroku run rake db:migrate
$ heroku run rake db:seed
$ heroku open
```
## MIT License
"MIT License":http://www.opensource.org/licenses/mit-license
Based off of: [Rails Bootstrap](https://github.com/RailsApps/rails-bootstrap/) by Daniel Kehoe