change to firebase auth

This commit is contained in:
2025-02-18 18:05:51 -06:00
parent b9a9b983e9
commit a2e6243e93
34 changed files with 465 additions and 63 deletions

View File

@@ -58,6 +58,7 @@ report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
pictures
pictures_base
pictures_
src/*.js
bun.lockb

View File

@@ -20,10 +20,10 @@
{
"type": "node",
"request": "launch",
"name": "Launch TypeScript file with tsx",
"name": "Launch import from exported with tsx",
"runtimeExecutable": "npx",
"runtimeArgs": ["tsx", "--inspect"],
"args": ["${workspaceFolder}/src/drizzle/import.ts"],
"args": ["${workspaceFolder}/src/drizzle/importFromExported.ts"],
"cwd": "${workspaceFolder}",
"outFiles": ["${workspaceFolder}/dist/**/*.js", "!**/node_modules/**"],
"sourceMaps": true,

View File

@@ -23,7 +23,6 @@ import { APP_INTERCEPTOR } from '@nestjs/core';
import { ClsMiddleware, ClsModule } from 'nestjs-cls';
import { LoggingInterceptor } from './interceptors/logging.interceptor';
import { UserInterceptor } from './interceptors/user.interceptor';
import { PaymentModule } from './payment/payment.module';
import { RequestDurationMiddleware } from './request-duration/request-duration.middleware';
import { SelectOptionsModule } from './select-options/select-options.module';
import { UserModule } from './user/user.module';
@@ -70,7 +69,7 @@ console.log(JSON.stringify(process.env, null, 2));
PassportModule,
AiModule,
LogModule,
PaymentModule,
// PaymentModule,
EventModule,
],
controllers: [AppController, LogController],