-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdevbox.json
More file actions
49 lines (49 loc) · 1.36 KB
/
devbox.json
File metadata and controls
49 lines (49 loc) · 1.36 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
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/main/.schema/devbox.schema.json",
"packages": [
"nodejs@22",
"docker-compose",
"awscli2",
"jq",
"yq",
"mysql80",
"redis",
"shared-mime-info",
"docker@latest",
"zstd.out",
"libyaml",
"openssl",
"vips",
"vips.out",
"vips.dev"
],
"shell": {
"init_hook": [
"source bin/devbox-fix-path.sh",
"source bin/devbox-setup-check.sh"
],
"scripts": {
"setup": ["bin/devbox-setup.sh"],
"start": ["bin/devbox-start.sh"],
"test": ["bundle exec rspec"]
}
},
"env": {
"MYSQL_HOST": "127.0.0.1",
"MYSQL_USER": "root",
"MYSQL_PASSWORD": "root",
"MYSQL_DATABASE": "dreamkast",
"REDIS_URL": "redis://127.0.0.1:6379",
"S3_BUCKET": "dreamkast-test-bucket",
"S3_REGION": "ap-northeast-1",
"SQS_FIFO_QUEUE_URL": "http://localhost:4566/000000000000/default",
"SQS_MAIL_QUEUE_URL": "http://localhost:4566/000000000000/default",
"DREAMKAST_API_ADDR": "http://localhost:8080",
"AWS_REGION": "ap-northeast-1",
"LIBRARY_PATH": "$DEVBOX_PROJECT_ROOT/.devbox/nix/profile/default/lib",
"LD_LIBRARY_PATH": "$DEVBOX_PROJECT_ROOT/.devbox/nix/profile/default/lib",
"PKG_CONFIG_PATH": "$DEVBOX_PROJECT_ROOT/.devbox/nix/profile/default/lib/pkgconfig"
}
}