Skip to content

Latest commit

 

History

History
128 lines (99 loc) · 3.17 KB

README.md

File metadata and controls

128 lines (99 loc) · 3.17 KB

Sinatra logo

Sinatra by SunDi3yansyah

Sinatra is a DSL for quickly creating web applications in Ruby with minimal effort.

Table of contents

Status

Build Status License GitHub last commit GitHub issues

Tech Stack

Setup

Clone

git clone https://github.com/SunDi3yansyah/sinatra.git
cd sinatra
bundle install

CLI

Available CLI using rake

rake

Run Web Server

rackup config.ru

Working Directory

.
├── app
│   ├── controllers
│   │   ├── application_controller.rb
│   │   └── concerns
│   │       └── .keep
│   ├── models
│   │   └── concerns
│   │       └── .keep
│   └── views
│       └── layouts
│           └── application.erb
├── config
│   ├── application.rb
│   ├── boot.rb
│   ├── .databases
│   │   ├── mysql2.yml
│   │   ├── pg.yml
│   │   └── sqlite3.yml
│   ├── database.yml
│   ├── environments
│   │   ├── development.rb
│   │   ├── production.rb
│   │   ├── staging.rb
│   │   └── test.rb
│   ├── exception.rb
│   └── initializers
│       └── constants.rb
├── config.ru
├── db
│   └── seeds.rb
├── .editorconfig
├── Gemfile
├── Gemfile.lock
├── .gitignore
├── lib
│   └── tasks
│       └── .keep
├── log
│   └── .keep
├── public
│   ├── favicon.ico
│   ├── robots.txt
│   └── storage
│       └── .keep
├── Rakefile
├── README.md
├── tmp
│   └── .keep
└── .travis.yml

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/SunDi3yansyah/sinatra. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

Code of Conduct

Everyone interacting in the Sinatra project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

License

The gem is available as open source under the terms of the MIT License.