Files
zk c0dca6f6a9 feat: manual human pass over the code, untangle and remove entropy (#1668)
* fix: use 3003 for seeds port + expose ports consistently

* fix: seeds-webui license AGPL3 -> MIT

* fix: more port 3100 to 3003

* feat: remove "GPT/UGPT" as a phrase from the codebase

* fix: clean up some ridiculous legacy code hoops
2026-06-17 21:34:26 +01:00

61 lines
1.5 KiB
JSON

{
"name": "Tachi",
"dockerComposeFile": ["../docker-compose-dev.yml"],
"service": "tachi-dev",
"workspaceFolder": "/tachi",
"containerEnv": {
"MINIO_ENDPOINT": "http://tachi-s3:9000",
"TACHI_EMAIL_FROM": "dev@localhost",
"TACHI_EMAIL_HOST": "tachi-mailpit",
"TACHI_EMAIL_PORT": "1025",
"TACHI_EMAIL_SECURE": "false"
},
"postAttachCommand": "./dev/bootstrap.sh",
"forwardPorts": [3000, 3001, 3002, 3003, 8080, 9779],
"updateRemoteUserUID": true,
"containerUser": "tachi",
"customizations": {
"vscode": {
"settings": {
"typescript.tsdk": "node_modules/typescript/lib",
"[typescriptreact]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "biomejs.biome"
},
"[typescript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "biomejs.biome"
},
"[javascript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "biomejs.biome"
},
"terminal.integrated.profiles.linux": {
"fish": {
"path": "fish"
}
},
"terminal.integrated.profiles.windows": {
"fish": {
"path": "fish"
}
},
"terminal.integrated.profiles.osx": {
"fish": {
"path": "fish"
}
},
"terminal.integrated.defaultProfile.linux": "fish",
"terminal.integrated.defaultProfile.windows": "fish",
"terminal.integrated.defaultProfile.osx": "fish",
"eslint.workingDirectories": [
{
"mode": "auto"
}
]
},
"extensions": ["dbaeumer.vscode-eslint", "biomejs.biome"]
}
}
}