Skip to content

Commit

Permalink
Fix modules
Browse files Browse the repository at this point in the history
  • Loading branch information
brubluenel committed Sep 12, 2024
1 parent 7424e38 commit 835baf5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
FROM node:18
RUN mkdir -p /var/app/happiness-backend
WORKDIR /var/app/happiness-backend
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { Quote } from './random-quote/quote.entity';
}),
RandomQuoteModule
],
controllers: [AppController, RandomQuoteController],
providers: [AppService, RandomQuoteService],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}

0 comments on commit 835baf5

Please sign in to comment.