A template project for starting quickly with Sinatra and Sequel.
- Sinatra - using Puma as the app server
- Sequel - using the Postgres adapter
- Dry-validation
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