-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdevbox.json
More file actions
27 lines (27 loc) · 876 Bytes
/
devbox.json
File metadata and controls
27 lines (27 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"$schema": "https://raw.githubusercontent.com/jetpack-io/devbox/0.13.6/.schema/devbox.schema.json",
"packages": [
"just@latest",
"docker@latest",
"docker-compose@latest"
],
"shell": {
"init_hook": [
"echo 'Welcome to the itrax development environment!'",
"echo 'Available commands:'",
"echo ' just help - Show available commands'",
"echo ' just build - Build the docker image'",
"echo ' just start - Start the application'",
"echo ''",
"echo 'Python and linting tools are available in the Docker container.'"
],
"scripts": {
"setup": [
"echo 'Setting up development environment...'",
"echo 'Checking Docker...'",
"docker --version || echo 'Docker not available - please ensure Docker is installed and running'",
"echo 'Ready to develop!'"
]
}
}
}