https://github.com/zencephalon/sinatra-mvc-skeleton
https://github.com/zencephalon/sinatra-mvc-skeleton
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/zencephalon/sinatra-mvc-skeleton
- Owner: zencephalon
- Created: 2014-09-01T19:36:40.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T08:17:12.000Z (over 3 years ago)
- Last Synced: 2025-03-28T06:22:45.076Z (over 1 year ago)
- Language: Ruby
- Size: 36.1 KB
- Stars: 34
- Watchers: 1
- Forks: 73
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
> **Note**: This branch (master) contains a skeleton without any app code, perfect for creating a _new_ application or challenge. If you're looking for an example app built with this skeleton, take a look at the [example](/../..//tree/example) branch which includes basic CRUD and RSpec tests.
### Purpose
The Sinatra Skeleton:
1. Provides a foundation for building challenges or creating a new Sinatra application.
2. Demonstrates a reasonable set of practices around building Sinatra applications.
3. Eases the transition to Rails for Dev Bootcamp students
### Quickstart
1. `bundle install`
2. `shotgun config.ru`
As needed, create models & migrations with the `rake` tasks:
```
rake generate:migration # Create an empty migration in db/migrate, e.g., rake generate:migration NAME=create_tasks
rake generate:model # Create an empty model in app/models, e.g., rake generate:model NAME=User
```
### Contributing
We would love for you to help make the skeleton more awesome, There are three ways to contribute:
1. Ask for a bug fix or enhancement!
2. Submit a pull request for a bug fix or enhancement!
3. Code review an open pull request!
Be prepared to give and receive specific, actionable, and kind feedback!