Skip to content

Commit 1e4abed

Browse files
committed
πŸ—„ [chore] Switch vscode tasks to mise tasks
1 parent cc8f173 commit 1e4abed

7 files changed

Lines changed: 12 additions & 120 deletions

File tree

β€Ž.vscode/extensions.jsonβ€Ž

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"hverlin.mise-vscode"
4+
]
5+
}

β€Ž.vscode/tasks.jsonβ€Ž

Lines changed: 0 additions & 115 deletions
This file was deleted.

β€Žmise.tomlβ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ POSTGRES_PASSWORD = { required = "PostgreSQL password" }
1313
POSTGRES_HOST = { required = "PostgreSQL host (e.g. localhost or kayman-db)" }
1414
POSTGRES_PORT = { required = "PostgreSQL port (default 5432)" }
1515
POSTGRES_DB = { required = "PostgreSQL database name" }
16+
17+
[task_config]
18+
includes = ["scripts"]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22
set -euo pipefail
3-
# Usage: scripts/build-client.sh
3+
#MISE description="Build Open API client for the frontend"
44

55
# Remove a tmp file and remove on exit
66
TMP_FILE="$(mktemp)"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/bash
22
set -euo pipefail
3+
#MISE description="Build Docker image"
34

45
IMAGE_NAME="tomy0000000/kayman:latest"
56

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22
set -euo pipefail
3-
# Usage: scripts/setup-dotenv.sh
3+
#MISE description="Setup environment variables"
44

55
ENV_FILE="instance/.env"
66
if [ -f "$ENV_FILE" ]; then
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#!/usr/bin/env bash
22
set -euo pipefail
3-
# Usage: scripts/start-dev-db.sh
4-
#
5-
# DO NOT use this in production, data will NOT persist!
3+
#MISE description="Start PostgreSQL database for development, DO NOT use this in production, data will NOT persist!"
64

75
# Generate client
86
docker run \

0 commit comments

Comments
Β (0)