Merge branch 'master' into feat/astro-template-for-front
Some checks failed
Build Docker Image Front / run (pull_request) Failing after 22s
Build Docker Image Back / run (pull_request) Successful in 22s
JsDocs / coverage (pull_request) Successful in 21s
Test and coverage / coverage (pull_request) Successful in 1m25s

This commit is contained in:
2024-05-20 13:16:02 +02:00
22 changed files with 803 additions and 11704 deletions

22
front/src/env.d.ts vendored
View File

@ -3,3 +3,25 @@
/// <reference types="astro/client" />
/// <reference types="vite/client" />
/// <reference types="../vendor/integration/types.d.ts" />
import PocketBase from 'pocketbase'
export interface ImportMetaEnv {
NODE_ENV: string
APP_URL: string
POCKETBASE_URL: string
GOOGLE_API_KEY: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}
declare global {
namespace App {
interface Locals {
pb: PocketBase
}
}
}