diff --git a/.env.example b/.env.example index 260e70e..a6011d4 100644 --- a/.env.example +++ b/.env.example @@ -15,19 +15,9 @@ API_BASE_URL=http://localhost:4000 # The URL that @cryb/web is being hosted on. Locally, this would be 'http://localhost:3000' WEB_BASE_URL=http://localhost:3000 -###################################### -# JSMPEG # -###################################### -# (Note: Rates are in kb/s and should match with portal's) -#VIDEO_BITRATE=1200 -#AUDIO_BITRATE=128 - ###################################### # Janus # ###################################### -# ENABLE_JANUS controls which JS libraries the end user receives. -ENABLE_JANUS=true - # Controls the URL @cryb/web will go try to connect to for WebRTC negotiation # ToDo: Move this to be negotiated with API/portals. JANUS_URL=http://localhost:8088 @@ -51,8 +41,8 @@ TURN_PASSWORD= # The domain used while setting cookies. Locally, this would be 'localhost'. In production, this would be '.example.com' COOKIE_DOMAIN=localhost # Nuxt.js Defaults -NUXT_HOST=0.0.0.0 -NUXT_PORT=3000 +HOST=0.0.0.0 +PORT=3000 # Optional: Show player's devtools - useful for debugging # SHOW_PLAYER_DEVTOOLS=true # Optional: link to local Borealis repository for @cryb/borealis development. @@ -60,6 +50,3 @@ NUXT_PORT=3000 # Dist files public path - useful if you want to use a CDN # PUBLIC_PATH=/_cryb/ - -# Rendering mode - This should be set to 'ssr' for SSR, otherwise it'll use 'spa'. -# RENDER_MODE=spa diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index f289df1..0000000 --- a/.eslintignore +++ /dev/null @@ -1,2 +0,0 @@ -.nuxt/ -static/js/ diff --git a/.gitignore b/.gitignore index c0ed4aa..469a47f 100644 --- a/.gitignore +++ b/.gitignore @@ -74,6 +74,7 @@ typings/ # nuxt.js build output .nuxt +.output dist # vuepress build output diff --git a/README.md b/README.md index 6d14cd3..e2d701a 100644 --- a/README.md +++ b/README.md @@ -58,10 +58,7 @@ git clone https://github.com/crybapp/web.git The following services need to be installed for `@cryb/web` to function: * `@cryb/api` - -We recommend that you run the following services alongside `@cryb/web`, but it's not required. - -* `@cryb/aperture` or Janus WebRTC Server +* Janus WebRTC Server (used for VM streams) You also need to install the required dependencies by running `yarn`. @@ -75,7 +72,7 @@ In this file, you'll need some values. Documentation is available in the `.env.e Make sure that you have installed `@cryb/api`. -If you're developing a feature that requires the VM infrastructure, then make sure either `@cryb/aperture` or Janus WebRTC server is running. +If you're developing a feature that requires the VM infrastructure, then make sure Janus WebRTC server is running. #### Starting @cryb/web diff --git a/app/components/nuxt-build-indicator.vue b/app/components/nuxt-build-indicator.vue deleted file mode 100644 index cb751dc..0000000 --- a/app/components/nuxt-build-indicator.vue +++ /dev/null @@ -1,114 +0,0 @@ - - - - - diff --git a/components/Chat/GroupedChatMessage.vue b/components/Chat/GroupedChatMessage.vue index f023375..3ef28a8 100644 --- a/components/Chat/GroupedChatMessage.vue +++ b/components/Chat/GroupedChatMessage.vue @@ -1,6 +1,12 @@