init db with migration, create users table

This commit is contained in:
Paul Coral
2025-07-28 08:16:34 +02:00
parent 8b327dcb18
commit c3881d7ff7
24 changed files with 494 additions and 23 deletions

View File

@@ -1,11 +1,11 @@
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { HelloController } from './hello/hello.controller';
import { AuthController } from './controllers/auth/auth.controller';
@Module({
imports: [],
controllers: [AppController, HelloController],
controllers: [AppController, AuthController],
providers: [AppService],
})
export class AppModule {}