From 91a650079d83dac45b18b3e1b0378047e61f6715 Mon Sep 17 00:00:00 2001 From: Marco Pedone Date: Fri, 8 May 2026 11:31:18 +0200 Subject: [PATCH] vscode workspace settings --- apps/infoalloggi/.vscode/terminal.sh | 6 ++++ apps/infoalloggi/infoalloggi.code-workspace | 37 +++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 apps/infoalloggi/.vscode/terminal.sh create mode 100644 apps/infoalloggi/infoalloggi.code-workspace diff --git a/apps/infoalloggi/.vscode/terminal.sh b/apps/infoalloggi/.vscode/terminal.sh new file mode 100644 index 0000000..211b9a8 --- /dev/null +++ b/apps/infoalloggi/.vscode/terminal.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +wt --pos 40,653 nt --title "Infoalloggi" --tabColor "#eb4034" -d "E:\infoalloggi-monorepo\apps\infoalloggi" ';' \ + nt --title "Backend" --tabColor "#74f73b" -d "E:\infoalloggi-monorepo\apps\backend" ';' \ + nt --title "Stripe WHook" --tabColor "#000dff" -d "E:\infoalloggi-monorepo\apps\infoalloggi" ';' \ + focus-tab -t 0 \ No newline at end of file diff --git a/apps/infoalloggi/infoalloggi.code-workspace b/apps/infoalloggi/infoalloggi.code-workspace new file mode 100644 index 0000000..695a6aa --- /dev/null +++ b/apps/infoalloggi/infoalloggi.code-workspace @@ -0,0 +1,37 @@ +{ + "folders": [ + { + "path": "." + }, + { + "path": "../db/migrations" + } + ], + "settings": { + "js/ts.tsdk.path": "node_modules\\typescript\\lib", + "biome.lsp.trace.server": "verbose", + "tinymist.fontPaths": ["${workspaceFolder}/typst/fonts"], + "window.restoreWindows": "all", + "window.newWindowDimensions": "inherit" + }, + "tasks": { + "version": "2.0.0", + "tasks": [ + { + "label": "Launch Project Terminals", + "type": "shell", + "command": ".vscode/terminal.sh", + "args": [], + "presentation": { + "reveal": "silent", + "panel": "new" + }, + "group": "none", + "runOptions": { + "runOn": "folderOpen" + }, + "problemMatcher": [] + } + ] + } +}