-
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.
- Loading branch information
Showing
54 changed files
with
1,982 additions
and
865 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
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
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
This file was deleted.
Oops, something went wrong.
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 @@ | ||
.env |
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,36 @@ | ||
development | ||
=== | ||
|
||
## 事前準備 | ||
|
||
手元で Websocket を有効化した OBS を立ち上げ、検証用にシーン・ソースを用意します。 | ||
|
||
### Download | ||
|
||
* [Download OBS](https://obsproject.com/ja/download) | ||
* [Download obs-websocket](https://github.com/obsproject/obs-websocket/releases/) | ||
|
||
### 検証用シーン・ソースの準備 | ||
|
||
TBW | ||
|
||
## 検証環境の起動 | ||
|
||
Docker Compose を用い、cnd-operation-server, seaman (SlackBot), dk-mock-server (Dreamkast API の Mock Server) を立ち上げます。 | ||
|
||
* `.env` ファイルの作成 | ||
|
||
``` | ||
SLACK_BOT_TOKEN=... | ||
SLACK_APP_TOKEN=... | ||
SWITHCER01_SLACK_CHANNEL_ID=... | ||
GITHUB_ACCESS_TOKEN=... | ||
SWITCHER01_HOST=... | ||
SWITCHER01_PASSWORD=... | ||
``` | ||
|
||
* コンテナの起動 | ||
|
||
```bash | ||
docker compose up -d | ||
``` |
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,13 @@ | ||
wsProxy: | ||
bindAddr: :20080 | ||
dreamkast: | ||
eventAbbr: cnsec2022 | ||
endpointUrl: ${DK_ENDPOINT_URL} | ||
tracks: | ||
- dkTrackId: 29 | ||
obs: | ||
host: ${SWITCHER01_HOST} | ||
password: ${SWITCHER01_PASSWORD} | ||
slack: | ||
botToken: ${SLACK_BOT_TOKEN} | ||
channelId: ${SWITCHER01_SLACK_CHANNEL_ID} |
Oops, something went wrong.