Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions im_test/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Prebid User ID Module (IM-UID System) の動作確認サーバー

## セットアップ

プロジェクトルートで以下を実行

```sh
npm install
npm run serve --nolint # このディレクトリのファイルでLintエラーになるため
```

## 起動

上記 `セットアップ` にて `build/dev/prebid.js` を開発ビルド後、プロジェクトルートで以下を実行

```sh
node im_test/server.js
```
12 changes: 12 additions & 0 deletions im_test/public/frame.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Frame Page</h1>
<iframe src="./userid.html" width="600" height="400" title="Example Frame"></iframe>
</body>
</html>
12 changes: 12 additions & 0 deletions im_test/public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test Top Page</title>
</head>
<body>
<a href="./userid.html"><button>User ID Example</button></a>
<a href="./frame.html"><button>Frame Example</button></a>
</body>
</html>
Loading
Loading