mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
feat(api): setup optional sentry error reporting
This commit is contained in:
parent
d620c03219
commit
56db4cd2e1
5 changed files with 2201 additions and 71 deletions
|
|
@ -1,6 +1,7 @@
|
|||
import { Module } from "@nestjs/common";
|
||||
import { ScheduleModule } from "@nestjs/schedule";
|
||||
import { ServeStaticModule } from "@nestjs/serve-static";
|
||||
import { RavenModule } from "nest-raven";
|
||||
import { join } from "path";
|
||||
import { AuthModule } from "./auth/auth.module";
|
||||
import { ConfigModule } from "./config/config.module";
|
||||
|
|
@ -23,6 +24,7 @@ import { UsersModule } from "./users/users.module";
|
|||
rootPath: join(__dirname, "..", "static"),
|
||||
exclude: ["/api*"],
|
||||
}),
|
||||
RavenModule,
|
||||
AuthModule,
|
||||
UsersModule,
|
||||
SourcesModule,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue