Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

# Automatically sets up your devbox environment whenever you cd into this
# directory via our direnv integration:

eval "$(devbox generate direnv --print-envrc)"

# check out https://www.jetify.com/docs/devbox/ide_configuration/direnv/
# for more details
25 changes: 25 additions & 0 deletions devbox.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.14.0/.schema/devbox.schema.json",
"packages": [
"nodejs_22",
"pnpm"
],
"env": {
"DEVBOX_NO_PROMPT": "1"
},
"shell": {
"init_hook": [
"if [ ! -d node_modules ]; then pnpm install; fi",
"printf '\\n'",
"printf '\\033[1;36m🎵 Audial dev environment ready!\\033[0m\\n'",
"printf '\\033[1;33m Run: pnpm dev\\033[0m\\n'",
"printf '\\n'"
],
"scripts": {
"dev": "pnpm dev",
"build": "pnpm build",
"test": "pnpm test",
"check": "pnpm check"
}
}
}