Add a test for email delivery

This commit is contained in:
Linus Gasser 2025-09-30 16:11:09 +02:00
parent d5809aca8e
commit 7418e2f14a
6 changed files with 655 additions and 1 deletions

23
devbox.json Normal file
View file

@ -0,0 +1,23 @@
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.16.0/.schema/devbox.schema.json",
"packages": {
"ruby": "3.3",
"libyamlcpp": "latest",
"libyaml": {
"version": "latest",
"outputs": ["dev"]
},
"pkg-config": "latest",
"postgresql": "latest"
},
"shell": {
"init_hook": [
"echo 'Welcome to devbox!' > /dev/null"
],
"scripts": {
"test": [
"echo \"Error: no test specified\" && exit 1"
]
}
}
}