Skip to content

Commit 02d5043

Browse files
committed
Update copyright comment
1 parent dfda2be commit 02d5043

File tree

3 files changed

+32
-3
lines changed

3 files changed

+32
-3
lines changed

backend/src/main.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/*
2+
* Project: Angular Jira clone
3+
* Author: Trung Vo ([email protected])
4+
* Homepage: https://github.com/trungk18/jira-clone-angular
5+
* -----
6+
* Last Modified: Monday, 29th June 2020 9:43:45 am
7+
* Modified By: Trung Vo ([email protected]>)
8+
* -----
9+
* Copyright 2020 Trung Vo
10+
*/
11+
112
import { NestFactory } from '@nestjs/core';
213
import { AppModule } from './app.module';
314
import { CorsOptions } from '@nestjs/common/interfaces/external/cors-options.interface';
@@ -7,7 +18,7 @@ const corsOptions: CorsOptions = {
718
};
819
async function bootstrap() {
920
const app = await NestFactory.create(AppModule, {
10-
cors: corsOptions
21+
cors: corsOptions,
1122
});
1223
await app.listen(process.env.PORT || 3000);
1324
}

frontend/src/index.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
<!doctype html>
22
<html lang="en">
33
<head>
4+
<!--
5+
Project: Angular Jira clone
6+
Author: Trung Vo ([email protected])
7+
Homepage: https://github.com/trungk18/jira-clone-angular
8+
-----
9+
Last Modified: Monday, 29th June 2020 9:41:59 am
10+
Modified By: Trung Vo ([email protected]>)
11+
-----
12+
Copyright 2020 Trung Vo
13+
-->
414
<meta charset="utf-8">
515
<title>Angular Jira Clone with Akita - by trungk18</title>
616
<base href="/">

frontend/src/index.prod.html

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
<!doctype html>
22
<html lang="en">
3-
4-
<head>
3+
<!--
4+
Project: Angular Jira clone
5+
Author: Trung Vo ([email protected])
6+
Homepage: https://github.com/trungk18/jira-clone-angular
7+
-----
8+
Last Modified: Monday, 29th June 2020 9:41:59 am
9+
Modified By: Trung Vo ([email protected]>)
10+
-----
11+
Copyright 2020 Trung Vo
12+
-->
513
<meta charset="utf-8">
614
<title>Angular Jira Clone with Akita - by trungk18</title>
715
<base href="/">

0 commit comments

Comments
 (0)