You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.
├── dist
│ ├── route-handlers <- routes
│ | ├── client.handler
| │ | ├── api/client <- GET: all clients
| │ | ├── api/client/ip <- GET: get client by ip
| │ | ├── api/client/:id <- GET: get client by id
| │ | ├── api/client/hb/in <- POST: save initial client checkin
| │ | ├── api/client/hb/up <- POST: save client heartbeat check in
| │ | ├── api/client/hb/off <- POST: delete client heatbeat
| │ | ├── api/client/current/media <- POST: save client's currently playing contnent
| │ | └── api/client/hb <- DEL: delete client heartbeat
│ | ├── command.handler.js
| │ | ├── api/db <- GET: get available collections
| │ | ├── api/db/cmds <- GET: get processed command files
| │ | ├── api/db/cmds/processed <- GET: get processed command file content
| │ | └── api/db/cmds/processed/:id <- GET: get processed command file content by id
│ | ├── http.handler.js
| │ | └── api/* <- OPTIONS: HTTP.200
│ | └── media.handler
| │ | ├── api/playlist/generate <- POST: save playlist from body
| │ | ├── api/playlist/generate/test<- POST: fake save playlist from body
| │ | ├── api/playlist <- GET: get all saved playlists
| │ | ├── api/playlist/latest <- GET: get last saved playlist
└── api/playlist/:id <- GET: get saved playlist by id
Runtime variables
.
├── node express-svr.js
│ ├── Settings.ts with be applied
│ ├── Express API
| │ ├── watched folders: ~/Dropbox on linux | %HOMEPATH%\Dropbox on Windows
│ | ├── local work directory: ~/media-player on linux | %HOMEPATH%\media-player on
│ | ├── Port: 5001
│ | ├── allowedOrigins: localhost:80, localhost:8081
│ | ├── watched folders: ~/Dropbox on linux | %HOMEPATH%\Dropbox on Windows
│ | └── local work directory: ~/media-player on linux | %HOMEPATH%\media-player on Windows
│ ├── Socket.io running on 5001
│ | └── client.handler