Skip to content

Commit

Permalink
initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
horie1024 committed Mar 10, 2020
0 parents commit b7500cf
Show file tree
Hide file tree
Showing 12 changed files with 5,500 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
node_modules/
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2020 ZOZO Technologies, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
## 第4章「Miro SDK入門」サンプルコード

このrepositoryは[技術書典 応援祭](https://techbookfest.org/market)で頒布された「ZOZO TECH BOOK VOL.1」の第4章「Miro SDK入門」のサンプルコードです。

本文中で紹介したサンプルアプリはこちらのリンクからインストールできます。

[https://miro.com/oauth/authorize/?response_type=token&client_id=3074457347308436588&redirect_uri=https://miro.com/](https://miro.com/oauth/authorize/?response_type=token&client_id=3074457347308436588&redirect_uri=https://miro.com/)

また、サンプルアプリのビルド手順は次の通りです。

依存関係のインストール

```bash
$ npm install
```

ビルドの実行

```bash
$ npx webpack
```

## ZOZO TECH BOOK VOL.1について

「ZOZO TECH BOOK VOL.1」はZOZOテクノロジーズ (ZOZO Technologies, Inc.) の有志が集まり、今回初の試みとして制作した技術同人誌です。
7 changes: 7 additions & 0 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript" src="https://miro.com/app/static/sdk.1.1.js"></script>
<script type="text/javascript" src="main.js"></script>
</head>
</html>
2 changes: 2 additions & 0 deletions dist/main.js

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

1 change: 1 addition & 0 deletions dist/main.js.map

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

Loading

0 comments on commit b7500cf

Please sign in to comment.