-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevbox.json
More file actions
60 lines (60 loc) · 2.31 KB
/
Copy pathdevbox.json
File metadata and controls
60 lines (60 loc) · 2.31 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"packages": [
"git",
"curl",
"unzip",
"neovim@latest",
"ripgrep",
"fd",
"zellij@latest",
"zsh@latest",
"fzf",
"zoxide",
"atuin",
"bat",
"eza",
"carapace",
"zsh-autocomplete",
"zsh-autosuggestions",
"zsh-syntax-highlighting",
"python312"
],
"env": {
"NPM_CONFIG_PREFIX": "$HOME/.npm-global"
},
"shell": {
"init_hook": [
"export COCKPIT_PROFILE=base",
"export COCKPIT_ENABLE_AI=0",
"export COCKPIT_ENABLE_DEVOPS=0",
"export COCKPIT_MULTIPLEXER=herdr",
"export COCKPIT_HOME=\"$(pwd)\"",
"export COCKPIT_DEVBOX_CONFIG=\"$(pwd)\"",
"export PATH=$HOME/.npm-global/bin:$PATH",
"export PATH=$HOME/.local/bin:$PATH",
"echo '🚀 VPS cockpit environment ready (base)'"
],
"scripts": {
"setup": "./scripts/setup.sh",
"gentle-install": "echo 'Este perfil no instala agentes IA. Usa: devbox run -c profiles/ai -- agent' && exit 1",
"pi-plugins": "echo 'Este perfil no instala agentes IA. Usa: devbox run -c profiles/ai -- agent' && exit 1",
"doctor": "./scripts/doctor.sh",
"agent": "echo 'Este perfil no instala agentes IA. Usa: devbox run -c profiles/ai -- agent' && exit 1",
"mcp-render": "./scripts/render-mcp.sh",
"zellij-install": "./scripts/install-zellij-autostart.sh",
"work": "./scripts/work.sh",
"zsh-install": "./scripts/install-zsh.sh",
"work-reset": "./scripts/work.sh --reset",
"work-update": "./scripts/work-update.sh",
"bootstrap": "./scripts/bootstrap.sh",
"herdr-install": "./scripts/install-herdr.sh",
"ai-clis": "echo 'Este perfil no instala agentes IA. Usa: devbox run -c profiles/ai -- agent' && exit 1",
"rtk-install": "echo 'Este perfil no instala agentes IA. Usa: devbox run -c profiles/ai -- agent' && exit 1",
"profile-info": "./scripts/profile-info.sh",
"antigravity-install": "echo 'Este perfil no instala agentes IA. Usa: devbox run -c profiles/ai -- antigravity-install' && exit 1",
"opencode": "echo 'Este perfil no instala agentes IA. Usa: work --profile ia' && exit 1",
"workmux-install": "echo 'Este perfil no instala Workmux. Usa: work-update --profile ia' && exit 1",
"workmux": "echo 'Este perfil no instala Workmux. Usa: work --profile ia' && exit 1"
}
}
}