2026-02-23 00:24:48 +01:00
|
|
|
{
|
|
|
|
|
"name": "Fluxer",
|
|
|
|
|
"dockerComposeFile": "docker-compose.yml",
|
2026-06-16 06:41:37 +02:00
|
|
|
"service": "workspace",
|
|
|
|
|
"workspaceFolder": "/workspaces/fluxer",
|
|
|
|
|
"shutdownAction": "stopCompose",
|
|
|
|
|
"remoteUser": "vscode",
|
2026-08-26 18:52:53 +02:00
|
|
|
"hostRequirements": {
|
|
|
|
|
"cpus": 4,
|
|
|
|
|
"memory": "8gb",
|
|
|
|
|
"storage": "32gb"
|
|
|
|
|
},
|
2026-02-23 00:24:48 +01:00
|
|
|
"remoteEnv": {
|
2026-08-12 16:56:25 +02:00
|
|
|
"DOCKER_HOST": "unix:///var/run/docker.sock"
|
2026-02-23 00:24:48 +01:00
|
|
|
},
|
2026-06-29 12:58:20 +02:00
|
|
|
"runServices": ["workspace", "postgres", "valkey", "nats", "livekit", "meilisearch", "mailpit"],
|
2026-08-26 18:52:53 +02:00
|
|
|
"forwardPorts": [3000, 8088, 8080, 8771, 8082, 8773, 3010, 3020, 8333],
|
2026-02-23 00:24:48 +01:00
|
|
|
"portsAttributes": {
|
2026-06-16 06:41:37 +02:00
|
|
|
"8088": {
|
|
|
|
|
"label": "Fluxer dev proxy",
|
|
|
|
|
"onAutoForward": "notify"
|
2026-02-23 00:24:48 +01:00
|
|
|
},
|
2026-06-16 06:41:37 +02:00
|
|
|
"3000": {
|
|
|
|
|
"label": "Rspack dev server"
|
|
|
|
|
},
|
|
|
|
|
"3020": {
|
|
|
|
|
"label": "Fluxer admin"
|
|
|
|
|
},
|
2026-08-26 18:52:53 +02:00
|
|
|
"8333": {
|
2026-06-16 06:41:37 +02:00
|
|
|
"label": "SeaweedFS S3"
|
|
|
|
|
},
|
2026-08-26 18:52:53 +02:00
|
|
|
"8773": {
|
|
|
|
|
"label": "Fluxer app proxy"
|
2026-02-23 00:24:48 +01:00
|
|
|
}
|
|
|
|
|
},
|
2026-08-26 18:52:53 +02:00
|
|
|
"postCreateCommand": "bash /workspaces/fluxer/.devcontainer/fix-docker-socket.sh && bash /workspaces/fluxer/.devcontainer/fix-workspace-permissions.sh && cargo run -p fluxer-dev -- bootstrap",
|
|
|
|
|
"postStartCommand": "bash /workspaces/fluxer/.devcontainer/fix-docker-socket.sh && bash /workspaces/fluxer/.devcontainer/fix-workspace-permissions.sh && cargo run -p fluxer-dev -- post-start",
|
2026-02-23 00:24:48 +01:00
|
|
|
"customizations": {
|
|
|
|
|
"vscode": {
|
2026-08-15 13:30:57 +02:00
|
|
|
"settings": {
|
|
|
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
|
|
|
},
|
2026-02-23 00:24:48 +01:00
|
|
|
"extensions": [
|
|
|
|
|
"biomejs.biome",
|
2026-06-16 06:41:37 +02:00
|
|
|
"rust-lang.rust-analyzer",
|
|
|
|
|
"tamasfe.even-better-toml",
|
|
|
|
|
"TypeScriptTeam.native-preview",
|
|
|
|
|
"unifiedjs.vscode-mdx",
|
2026-02-23 00:24:48 +01:00
|
|
|
"pgourlain.erlang",
|
2026-08-15 13:30:21 +02:00
|
|
|
"clinyong.vscode-css-modules",
|
|
|
|
|
"EditorConfig.EditorConfig"
|
2026-06-16 06:41:37 +02:00
|
|
|
]
|
2026-02-23 00:24:48 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|