Fixing repository setup
All checks were successful
Music Collection CI Workflow / test (./backend) (push) Successful in 29s
Music Collection CI Workflow / test (./frontend) (push) Successful in 34s
Music Collection CI Workflow / build-and-push-images (./backend/Dockerfile, git.anatid.net/tabris/music-collection-backend, ./backend) (push) Successful in 50s
Music Collection CI Workflow / build-and-push-images (./frontend/Dockerfile, git.anatid.net/tabris/music-collection-frontend, ./frontend) (push) Successful in 1m49s
Music Collection CI Workflow / deploy (push) Successful in 14s

This commit is contained in:
Phill Pover 2025-04-07 01:07:35 +01:00
parent 077be202a0
commit 2658a418b6

View File

@ -1,11 +1,12 @@
import { Module } from '@nestjs/common'; import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm'; import { TypeOrmModule } from '@nestjs/typeorm';
import { Song } from './song.entity'; import { Song } from './song.entity';
import { Album } from '../album/album.entity';
import { SongController } from './song.controller'; import { SongController } from './song.controller';
import { SongService } from './song.service'; import { SongService } from './song.service';
@Module({ @Module({
imports: [TypeOrmModule.forFeature([Song])], imports: [TypeOrmModule.forFeature([Song]),TypeOrmModule.forFeature([Album])],
controllers: [SongController], controllers: [SongController],
providers: [SongService], providers: [SongService],
exports: [TypeOrmModule] exports: [TypeOrmModule]