-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevbox.json
More file actions
48 lines (48 loc) · 1.2 KB
/
devbox.json
File metadata and controls
48 lines (48 loc) · 1.2 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
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.13.4/.schema/devbox.schema.json",
"packages": [
"nodejs@22",
"neovim@latest",
"git@latest",
"tailwindcss@latest",
"killport@latest",
"playwright@latest",
"act@latest",
"tmux@latest",
"tmuxinator@latest",
"neovim@latest",
"ripgrep@latest",
"fzf@latest",
"fd@latest",
"lazygit@latest",
],
"include": [],
"description": "DevBox with standard tools and packages easily installed",
"env": {
"PROMPT_COMMAND": "echo -e \"\\nCurrent Directory: $(pwd)\"",
"PS1": "📦 devbox> ",
},
"shell": {
"init_hook": [
"git config core.hooksPath .git-hooks",
"echo 'Welcome! See README.md for tips on contributing to this repo.'",
],
"scripts": {
"npm-install": [
"npm install",
],
"tmux": [
"tmuxinator start rrmistry-github-io -p $PWD/.tmuxinator.yml",
],
"tmux:stop": [
"tmuxinator stop rrmistry-github-io -p $PWD/.tmuxinator.yml",
],
"dev": [
"npm run dev -- --host=0.0.0.0",
],
"ci:local": [
"act push --job build_and_test --secret-file .secrets",
],
},
},
}