Boilerplate for Roda + Sequel projects.
This boilerplate includes the things I need most when starting a new project.
- Simple Migration structure
- DB + Model setup
- bin/console (like
rails console
) - RSpec setup
- I18n setup
- Continuous integration with Github Actions
- Params validation with
dry-validation
- Documentation using
yard
.
This project uses PostgreSQL by default, to setup.
- Create
.env.development
for development. - Add
DATABASE_URL=postgresql://host/mydb
andcreatedb mydb
locally.
A sample migration has been added to migrate
folder.
You can start your application using rackup
command.