Boilerplate for Roda + Sequel projects.
This boilerplate includes the things I need most when starting a new project.
- Webpack + TailwindCSS + PurgeCSS
- Simple Migration structure
- DB + Model setup
- bin/console (like
rails console
) - Minitest setup
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.
Just run npm install to install all dependencies.
Fusrodah uses rerun to watch for changes and restart the app.
A foreman script has been included to run the app in Procfile.dev
To start webpack and rerun, run
foreman s -f Procfile.dev
Fusrodah is released under the MIT License.