Skip to content

Latest commit

 

History

History
34 lines (31 loc) · 1.01 KB

README.md

File metadata and controls

34 lines (31 loc) · 1.01 KB

sinatra_starter

A template project for starting quickly with Sinatra and Sequel.

What's included

Project Dependencies

Test and Development Dependencies

Docker

To run the project with Docker:

  • Update database config in config/database.yml:
development:
  :adapter: postgres
  :encoding: unicode
  :pool: 5
  :database: sinatra_starter_dev
  :host: db
  :user: postgres
  :password: password
  • build and start the containers:
$ docker-compose up