mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-22 23:18:05 +03:00
* checkpoint * server compiles again * fmt * checkpoint * last one out, get the lights * euston station * like, mostly good. I'm under the ocean right now. * fix: some nonsense AI stuff * fix: new eslint rules, and cleanup imports across the board * feat: folder slug rewrite, email logic change, too * fix: register must use txn not db * checkpoint
61 lines
1.5 KiB
JSON
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_AUTH_POSTMARK": "false",
|
|
"TACHI_EMAIL_HOST": "tachi-mailpit",
|
|
"TACHI_EMAIL_PORT": "1025",
|
|
"TACHI_EMAIL_SECURE": "false"
|
|
},
|
|
"postAttachCommand": "./dev/bootstrap.sh",
|
|
"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"]
|
|
}
|
|
}
|
|
}
|