Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📝 Add development section #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@

はじめてgoで書きました。おかしな点があればご指摘ください。

# Development
事前にGoのインストールとGOPATHの準備をする必要があります。準備が済んでる場合は下のコマンドを実行していきます。

```shell
$ cd $GOPATH/src/github.com
$ git clone github.com/tnoho/WebRTCHandsOnSig
$ cd ./WebRTCHandsOnSig
$ go build
$ ./WebRTCHandsOnSig # launch server
```

サーバーが立ち上がったら `localhost:8080/WebRTCHandsOn/{username}` にブラウザでアクセスしましょう。usernameは自分の好きな名前を埋めましょう。

# 謝辞

templateに利用したのは [yusuke84](https://github.com/yusuke84) 氏の [WebRTCハンズオン](http://qiita.com/yusuke84/items/de9f0f6d221acec6fc07) 用ソースコードです。ありがとうございます!
Expand Down