Skip to content

Commit

Permalink
touch all apps to force deployments no 2
Browse files Browse the repository at this point in the history
  • Loading branch information
vygandas committed Oct 26, 2023
1 parent a6f6d19 commit 392c813
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
5 changes: 3 additions & 2 deletions apps/api/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ import { NestFactory } from '@nestjs/core';

import { AppModule } from './app/app.module';

//
async function bootstrap() {
const app = await NestFactory.create(AppModule);
const globalPrefix = 'api';
app.setGlobalPrefix(globalPrefix);
const port = process.env.PORT || 3000;
await app.listen(port);
Logger.log(`🚀 Application is running on: http://localhost:${port}/${globalPrefix}`);
Logger.log(
`🚀 Application is running on: http://localhost:${port}/${globalPrefix}`
);
}

bootstrap();
1 change: 0 additions & 1 deletion apps/landing/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ export const metadata = {
description: 'Generated by create-nx-workspace',
};

//
export default function RootLayout({
children,
}: {
Expand Down
2 changes: 0 additions & 2 deletions apps/platform/src/app/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import NxWelcome from './nx-welcome';

import { Route, Routes, Link } from 'react-router-dom';

//

export function App() {
return (
<div>
Expand Down

0 comments on commit 392c813

Please sign in to comment.