-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
�ipa와 Menifest를 포함한 html을 생성한다.
- Loading branch information
Showing
4 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<html> | ||
<head> | ||
<title>Home</title> | ||
<meta charset="UTF-8"> | ||
</head> | ||
<body> | ||
<p>모티 앱 v0.0 <a href="itms-services://?action=download-manifest&url=https://kr.object.ncloudstorage.com/motimate-deploy/manifest.plist">Download</a></p> | ||
<p>Last updated: 2023-11-16 23:18</p> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { Controller, Get, Res } from '@nestjs/common'; | ||
import { Response } from 'express'; | ||
|
||
@Controller('operate') | ||
export class OperateMvcController { | ||
@Get() | ||
async getOperate(@Res() res: Response) { | ||
res.sendFile('index.html', { root: 'public' }); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters