diff --git a/.gitignore b/.gitignore index 6f92a01..bd1d961 100644 --- a/.gitignore +++ b/.gitignore @@ -116,3 +116,5 @@ dist .yarn/install-state.gz .pnp.* +# titles file +titles.json \ No newline at end of file diff --git a/README.md b/README.md index 1565a8e..f2acdfc 100644 --- a/README.md +++ b/README.md @@ -2,13 +2,26 @@ pixel streaming session server -configure environment variables with .env file +configure environment variables with .env file and titles.json: -.env: +.env example: PORT= EXTERNAL_DOMAIN="" COORDINATOR_URL="" DATABASE_URL="" DATABASE_NAME="" -WEBRTC_PORT_BEGIN= \ No newline at end of file +WEBRTC_PORT_BEGIN= + +titles.json example: + +[ + { + "title":"title_name", + "path":"path/to/exe" + }, + { + "title":"title_name", + "path":"path/to/exe" + } +] \ No newline at end of file