Add microapp platform scaffold

This commit is contained in:
Ruslan Bakiev
2026-03-23 11:47:14 +07:00
parent 3d7e963087
commit d4fc4f66cc
11 changed files with 544 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
{
"tasks": {
"dev": "deno run --watch --allow-read=. --allow-env=PORT,POCKETBASE_URL,POCKETBASE_SERVICE_EMAIL,POCKETBASE_SERVICE_PASSWORD,APP_OWNER_TEAM_ID,APP_SLUG --allow-net=127.0.0.1,localhost,pocketbase.internal main.ts",
"check": "deno check main.ts pocketbase/client.ts app.config.ts"
},
"fmt": {
"lineWidth": 100,
"singleQuote": false
},
"lint": {
"rules": {
"tags": [
"recommended"
]
}
}
}