Skip to content

Latest commit

 

History

History
54 lines (41 loc) · 996 Bytes

README.md

File metadata and controls

54 lines (41 loc) · 996 Bytes

Features

  • Modular Application
  • Automatic Reload
  • Test with: Minitest
  • Persistence with: sinatra-activerecord
  • CLI: rake console

To Do List

  • Modular App OK
  • Auto Reload OK
  • Test :(

Project folder

$ tree -d -L 2
.
├── config
├── controllers
├── helpers
├── log
├── models
├── public
├── tmp
│   ├── pids
│   └── sockets
└── views

Run server

$ rackup -p 4567
$ bundle exec puma -C config/puma.rb

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

References