Compare commits
3 Commits
914a168c3f
...
eb9010cb20
Author | SHA1 | Date | |
---|---|---|---|
eb9010cb20 | |||
b1456d2600 | |||
1d1fe70ed6 |
@@ -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,
|
||||
|
@@ -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
|
||||
|
6
.vscode/settings.json
vendored
6
.vscode/settings.json
vendored
@@ -1,6 +0,0 @@
|
||||
{
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.organizeImports.biome": "explicit",
|
||||
"source.fixAll.biome": "explicit"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user