2023-08-15 10:49:05 +02:00
|
|
|
{
|
2025-07-22 01:23:40 +02:00
|
|
|
"$schema": "https://raw.githubusercontent.com/devcontainers/spec/refs/heads/main/schemas/devContainer.schema.json",
|
|
|
|
"name": "devcontainer",
|
2023-08-15 10:49:05 +02:00
|
|
|
"dockerComposeFile": "docker-compose.yml",
|
|
|
|
"service": "devcontainer",
|
2025-07-24 11:20:35 +02:00
|
|
|
"runServices": [
|
|
|
|
"devContainer",
|
|
|
|
"db"
|
|
|
|
],
|
2025-07-21 17:13:29 +00:00
|
|
|
"workspaceFolder": "/workspaces",
|
2023-08-15 10:49:05 +02:00
|
|
|
"features": {
|
|
|
|
"ghcr.io/devcontainers/features/go:1": {
|
2025-07-18 17:20:57 +02:00
|
|
|
"version": "1.24"
|
|
|
|
},
|
2023-08-15 10:49:05 +02:00
|
|
|
"ghcr.io/guiyomh/features/golangci-lint:0": {},
|
2025-07-22 14:13:44 +02:00
|
|
|
"ghcr.io/jungaretti/features/make:1": {}
|
2023-08-15 10:49:05 +02:00
|
|
|
},
|
|
|
|
"forwardPorts": [
|
|
|
|
3000,
|
2025-07-21 17:13:29 +00:00
|
|
|
3001,
|
2023-08-15 10:49:05 +02:00
|
|
|
4200,
|
|
|
|
8080
|
|
|
|
],
|
2025-07-22 16:56:13 +02:00
|
|
|
"onCreateCommand": "pnpm install -g sass@1.64.1",
|
2025-07-21 17:13:29 +00:00
|
|
|
"customizations": {
|
|
|
|
"jetbrains": {
|
|
|
|
"settings": {
|
|
|
|
"com.intellij:app:HttpConfigurable.use_proxy_pac": true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2025-07-24 11:20:35 +02:00
|
|
|
}
|