add google and memgraph env vars

This commit is contained in:
2025-02-22 18:51:40 +01:00
parent 1d12aac6ec
commit 59b748aa6c
5 changed files with 190 additions and 10 deletions

3
app/src/app.d.ts vendored
View File

@@ -3,6 +3,9 @@ import { KVNamespace } from '@cloudflare/workers-types';
// for information about these interfaces
declare global {
namespace App {
interface Locals {
session: Session | null;
}
interface Platform {
env: {
GH_MEDIA: R2Bucket;

View File

@@ -1,7 +0,0 @@
import { describe, it, expect } from 'vitest';
describe('sum test', () => {
it('adds 1 + 2 to equal 3', () => {
expect(1 + 2).toBe(3);
});
});