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 schematcis via uml #6

Closed
capital-G opened this issue Apr 2, 2022 · 1 comment
Closed

Add schematcis via uml #6

capital-G opened this issue Apr 2, 2022 · 1 comment
Assignees
Labels
documentation Improvements or additions to documentation

Comments

@capital-G
Copy link
Owner

First sketch via https://www.planttext.com/

grafik

@startuml

rectangle "Local" {
  rectangle "docker" as localdocker {
      frame client {
        rectangle "client.js:57220" as LocalClient
      }
    }
    frame "SuperCollider" {
      rectangle "sclang:57120" as sclang
    }
}

rectangle "Server" {
  rectangle "docker" {
  frame "backend" {
    rectangle ":3000" <<express>> as express
  }
  frame "frontend" {
    rectangle ":8080" <<vue>> as vue
  }
  }
  
  frame "nginx" {
    rectangle ":80" <<webserver>> as webserver
  }

}

cloud "Remote Clients" as RemoteClients


RemoteClients <-> webserver : "WebRTC"


vue -> webserver : "http"
express <-> webserver : "ws"


LocalClient <--> webserver : "WebRTC"

sclang <-> LocalClient : "OSC"


@enduml
@capital-G capital-G added the documentation Improvements or additions to documentation label Apr 2, 2022
@capital-G capital-G self-assigned this Apr 2, 2022
@capital-G
Copy link
Owner Author

Implemented in 517df60

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

1 participant