Compare commits

..

3 Commits

Author SHA1 Message Date
eb9010cb20 chore: delete vscode settings file 2025-09-14 00:53:20 +00:00
b1456d2600 chore: add convex ona automation 2025-09-14 00:53:11 +00:00
1d1fe70ed6 chore: fix code action on save config
Co-authored-by: Ona <no-reply@ona.com>
2025-09-14 00:52:57 +00:00
3 changed files with 26 additions and 8 deletions

View File

@@ -29,8 +29,8 @@
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.fixAll": "explicit"
"source.organizeImports.biome": "explicit",
"source.fixAll.biome": "explicit"
},
"typescript.preferences.importModuleSpecifier": "relative",
"typescript.suggest.autoImports": true,

View File

@@ -22,3 +22,27 @@ services:
pkill -f "bun.*dev"
triggeredBy:
- postEnvironmentStart
convex-dev:
name: Convex Development Server
description: Runs the Convex development server for backend functions
commands:
start: |
echo "Starting Convex development server..."
cd /workspaces/workspaces
bunx convex dev
ready: |
# Check if Convex dev server is running by looking for the process
pgrep -f "convex.*dev" > /dev/null 2>&1
if [ $? -eq 0 ]; then
echo "Convex development server is ready"
exit 0
else
echo "Convex development server is not ready"
exit 1
fi
stop: |
echo "Stopping Convex development server..."
pkill -f "convex.*dev"
triggeredBy:
- postEnvironmentStart

View File

@@ -1,6 +0,0 @@
{
"editor.codeActionsOnSave": {
"source.organizeImports.biome": "explicit",
"source.fixAll.biome": "explicit"
}
}