Skip to content

Commit

Permalink
Create displayer application
Browse files Browse the repository at this point in the history
  • Loading branch information
sirknightj committed May 2, 2024
1 parent e9ca6bd commit 3b5f306
Show file tree
Hide file tree
Showing 28 changed files with 20,853 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/deploy-to-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Build and Deploy

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and Deploy React app to GitHub Pages
uses: omkartapale/react-deployment-gh-pages@v1.0.0
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,14 @@ dist
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

/node_modules
/.pnp
.pnp.js

.idea/
*.iml

.DS_Store

build/
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# KVS TURN Server Displayer

This browser application generates a temporary KVS WebRTC TURN session and displays the details necessary to use it.

## Getting started

1. On the login screen, provide AWS Credentials.

![Login Screen](./images/login-screen.png "Empty login screen")

2. Next, specify a region and your Signaling Channel.

![Fetcher Screen](./images/fetcher-screen.png "Signaling Channel Input")

3. Choose Master or Viewer.

4. Your TURN server session will be created and displayed on-screen. Choose the "Copy" buttons to copy the corresponding fields to your clipboard.

![TURN Server Display Screen](./images/turn-server-display.png "TURN server display")

## License

This project is licensed under the Apache-2.0 License.
Binary file added images/fetcher-screen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/login-screen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/turn-server-display.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 3b5f306

Please sign in to comment.