-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into addRaiseYourHand
- Loading branch information
Showing
21 changed files
with
1,760 additions
and
193 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
## Ant Media Server WebRTC Conference App Environment Variables | ||
# Path: .env.production | ||
|
||
# IMPORTANT: This file is for production environment. | ||
# If you wanted to make local tests, you can copy this file to .env.development and change the values. | ||
# When you run the application with npm start, .env.development file will be used. | ||
# When you run the application with npm run build, .env.production file will be used. | ||
|
||
# We don't suggest to set REACT_APP_WEBSOCKET_URL and REACT_APP_REST_BASE_URL in production environment. | ||
# When you create a war file and deploy it to the Ant Media Server, these variables will be set automatically. | ||
|
||
# Ant Media Server URL configurations | ||
REACT_APP_WEBSOCKET_URL="ws://localhost:5080/Conference/websocket" | ||
#REACT_APP_WEBSOCKET_URL="wss://circle.antmedia.io/Conference/websocket" | ||
#REACT_APP_WEBSOCKET_URL="ws://localhost:7080/demo/websocket" | ||
|
||
# Turn Server URL configurations | ||
REACT_APP_TURN_SERVER_URL="turn:ovh36.antmedia.io:3478" | ||
REACT_APP_TURN_SERVER_USERNAME="ovh36" | ||
REACT_APP_TURN_SERVER_CREDENTIAL="ovh36" | ||
|
||
# Footer buttons configurations | ||
REACT_APP_FOOTER_OPTION_BUTTON_VISIBILITY=true | ||
REACT_APP_FOOTER_CAMERA_BUTTON_VISIBILITY=true | ||
REACT_APP_FOOTER_MIC_BUTTON_VISIBILITY=true | ||
REACT_APP_FOOTER_SCREEN_SHARE_BUTTON_VISIBILITY=true | ||
REACT_APP_FOOTER_REACTIONS_BUTTON_VISIBILITY=true | ||
REACT_APP_FOOTER_MESSAGE_BUTTON_VISIBILITY=true | ||
REACT_APP_FOOTER_PARTICIPANT_LIST_BUTTON_VISIBILITY=true | ||
REACT_APP_FOOTER_END_CALL_BUTTON_VISIBILITY=true | ||
REACT_APP_FOOTER_CLOCK_VISIBILITY=true | ||
REACT_APP_FOOTER_PUBLISHER_REQUEST_BUTTON_VISIBILITY=false | ||
|
||
# Option menu buttons configurations | ||
REACT_APP_OPTION_MENU_GENERAL_SETTINGS_BUTTON_VISIBILITY=true | ||
REACT_APP_OPTION_MENU_CHANGE_LAYOUT_BUTTON_VISIBILITY=true | ||
REACT_APP_OPTION_MENU_CALL_SETTINGS_BUTTON_VISIBILITY=true | ||
REACT_APP_OPTION_MENU_REPORT_PROBLEM_BUTTON_VISIBILITY=true | ||
|
||
# General settings configurations | ||
REACT_APP_GENERAL_SETTINGS_LANGUAGE_VISIBILITY=true | ||
REACT_APP_GENERAL_SETTINGS_THEME_VISIBILITY=true | ||
|
||
# Call settings configurations | ||
REACT_APP_CALL_SETTINGS_VIRTUAL_BACKGROUND_MODE_VISIBILITY=true | ||
|
||
# Waiting room configurations | ||
REACT_APP_WAITING_ROOM_PARTICIPANT_NAME_READONLY=false | ||
|
||
# Layout configurations | ||
# If you make REACT_APP_LAYOUT_OTHERS_CARD_VISIBILITY false, you won't see other participants' video in case of number of participants is more than the max participant number of the layout | ||
REACT_APP_LAYOUT_OTHERS_CARD_VISIBILITY=true | ||
|
||
# Time Zone Widget configurations | ||
REACT_APP_TIME_ZONE_LIVE_TEXT_VISIBILITY=true | ||
|
||
# Video Overlay configurations | ||
REACT_APP_VIDEO_OVERLAY_ADMIN_MODE_ENABLED=false | ||
|
||
# Participant Tab configurations | ||
REACT_APP_PARTICIPANT_TAB_ADMIN_MODE_ENABLED=false | ||
|
||
# Meeting Recording configuration | ||
REACT_APP_RECORDING_MANAGED_BY_ADMIN=false | ||
|
||
# Used to force the theme | ||
#REACT_APP_FORCE_THEME="white" | ||
|
||
# Speed Test configurations | ||
REACT_APP_SPEED_TEST_BEFORE_JOINING_THE_ROOM=false | ||
|
||
# Auto Pin configurations for screen share | ||
REACT_APP_AUTO_PIN_WHEN_SCREEN_SHARE=true | ||
|
||
# URL configurations | ||
REACT_APP_FOOTER_LOGO_ON_CLICK_URL="https://antmedia.io/circle" | ||
REACT_APP_REPORT_PROBLEM_URL="https://github.com/ant-media/conference-call-application/issues" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
## Ant Media Server WebRTC Conference App Environment Variables | ||
# Path: .env.production | ||
|
||
# IMPORTANT: This file is for production environment. | ||
# If you wanted to make local tests, you can copy this file to .env.development and change the values. | ||
# When you run the application with npm start, .env.development file will be used. | ||
# When you run the application with npm run build, .env.production file will be used. | ||
|
||
# We don't suggest to set REACT_APP_WEBSOCKET_URL and REACT_APP_REST_BASE_URL in production environment. | ||
# When you create a war file and deploy it to the Ant Media Server, these variables will be set automatically. | ||
|
||
# Ant Media Server URL configurations | ||
#REACT_APP_WEBSOCKET_URL="ws://localhost:5080/Conference/websocket" | ||
|
||
# Turn Server URL configurations | ||
REACT_APP_TURN_SERVER_URL="turn:ovh36.antmedia.io:3478" | ||
REACT_APP_TURN_SERVER_USERNAME="ovh36" | ||
REACT_APP_TURN_SERVER_CREDENTIAL="ovh36" | ||
|
||
# Footer buttons configurations | ||
REACT_APP_FOOTER_APP_LOGO_VISIBILITY=false | ||
REACT_APP_FOOTER_OPTION_BUTTON_VISIBILITY=true | ||
REACT_APP_FOOTER_CAMERA_BUTTON_VISIBILITY=true | ||
REACT_APP_FOOTER_MIC_BUTTON_VISIBILITY=true | ||
REACT_APP_FOOTER_SCREEN_SHARE_BUTTON_VISIBILITY=true | ||
REACT_APP_FOOTER_REACTIONS_BUTTON_VISIBILITY=true | ||
REACT_APP_FOOTER_MESSAGE_BUTTON_VISIBILITY=true | ||
REACT_APP_FOOTER_PARTICIPANT_LIST_BUTTON_VISIBILITY=true | ||
REACT_APP_FOOTER_END_CALL_BUTTON_VISIBILITY=true | ||
REACT_APP_FOOTER_CLOCK_VISIBILITY=true | ||
REACT_APP_FOOTER_PUBLISHER_REQUEST_BUTTON_VISIBILITY=false | ||
|
||
# Option menu buttons configurations | ||
REACT_APP_OPTION_MENU_GENERAL_SETTINGS_BUTTON_VISIBILITY=false | ||
REACT_APP_OPTION_MENU_CHANGE_LAYOUT_BUTTON_VISIBILITY=false | ||
REACT_APP_OPTION_MENU_CALL_SETTINGS_BUTTON_VISIBILITY=true | ||
REACT_APP_OPTION_MENU_REPORT_PROBLEM_BUTTON_VISIBILITY=true | ||
|
||
# General settings configurations | ||
REACT_APP_GENERAL_SETTINGS_LANGUAGE_VISIBILITY=true | ||
REACT_APP_GENERAL_SETTINGS_THEME_VISIBILITY=true | ||
|
||
# Call settings configurations | ||
REACT_APP_CALL_SETTINGS_VIRTUAL_BACKGROUND_MODE_VISIBILITY=true | ||
|
||
# Waiting room configurations | ||
REACT_APP_WAITING_ROOM_PARTICIPANT_NAME_READONLY=true | ||
|
||
# Layout configurations | ||
# If you make REACT_APP_LAYOUT_OTHERS_CARD_VISIBILITY false, you won't see other participants' video in case of number of participants is more than the max participant number of the layout | ||
REACT_APP_LAYOUT_OTHERS_CARD_VISIBILITY=false | ||
|
||
# Time Zone Widget configurations | ||
REACT_APP_TIME_ZONE_LIVE_TEXT_VISIBILITY=true | ||
|
||
# Video Overlay configurations | ||
REACT_APP_VIDEO_OVERLAY_ADMIN_MODE_ENABLED=true | ||
|
||
# Speed Test configurations | ||
REACT_APP_SPEED_TEST_BEFORE_JOINING_THE_ROOM=true | ||
|
||
# Participant Tab configurations | ||
REACT_APP_PARTICIPANT_TAB_ADMIN_MODE_ENABLED=true | ||
|
||
# Meeting Recording configuration | ||
REACT_APP_RECORDING_MANAGED_BY_ADMIN=true | ||
|
||
# Used to force the theme | ||
REACT_APP_FORCE_THEME="white" | ||
|
||
# Speed Test configurations | ||
REACT_APP_SPEED_TEST_BEFORE_JOINING_THE_ROOM=true | ||
|
||
# URL configurations | ||
REACT_APP_FOOTER_LOGO_ON_CLICK_URL="" | ||
REACT_APP_REPORT_PROBLEM_URL="" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.