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.developmentfor development. - Add
DATABASE_URL=postgresql://host/mydbandcreatedb mydblocally.
A sample migration has been added to migrate folder.
You can start your application using rackup command.