├── .browserslistrc ├── .gitignore ├── README.md ├── babel.config.js ├── docs ├── azure_speech_service_tutorial.md └── imgs │ ├── 1_azure_speech │ ├── 10_get_keys.png │ ├── 1_create_resource.png │ ├── 2_search_speech_service.png │ ├── 3_create_speech.png │ ├── 4_base_info.png │ ├── 5_network.png │ ├── 6_identity.png │ ├── 7_tags.png │ ├── 8_review_create.png │ └── 9_info.png │ └── 2_demo │ └── demo.png ├── jsconfig.json ├── package.json ├── public └── index.html ├── src ├── App.vue ├── assets │ └── logo.png ├── components │ ├── LoadingIcon.vue │ └── MyTimer.vue ├── main.js ├── router │ └── index.js ├── store │ └── index.js ├── utils │ └── config_util.js └── views │ ├── Empty.vue │ ├── HomeView.vue │ └── Setting.vue └── vue.config.js /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/azure_speech_service_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/docs/azure_speech_service_tutorial.md -------------------------------------------------------------------------------- /docs/imgs/1_azure_speech/10_get_keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/docs/imgs/1_azure_speech/10_get_keys.png -------------------------------------------------------------------------------- /docs/imgs/1_azure_speech/1_create_resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/docs/imgs/1_azure_speech/1_create_resource.png -------------------------------------------------------------------------------- /docs/imgs/1_azure_speech/2_search_speech_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/docs/imgs/1_azure_speech/2_search_speech_service.png -------------------------------------------------------------------------------- /docs/imgs/1_azure_speech/3_create_speech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/docs/imgs/1_azure_speech/3_create_speech.png -------------------------------------------------------------------------------- /docs/imgs/1_azure_speech/4_base_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/docs/imgs/1_azure_speech/4_base_info.png -------------------------------------------------------------------------------- /docs/imgs/1_azure_speech/5_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/docs/imgs/1_azure_speech/5_network.png -------------------------------------------------------------------------------- /docs/imgs/1_azure_speech/6_identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/docs/imgs/1_azure_speech/6_identity.png -------------------------------------------------------------------------------- /docs/imgs/1_azure_speech/7_tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/docs/imgs/1_azure_speech/7_tags.png -------------------------------------------------------------------------------- /docs/imgs/1_azure_speech/8_review_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/docs/imgs/1_azure_speech/8_review_create.png -------------------------------------------------------------------------------- /docs/imgs/1_azure_speech/9_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/docs/imgs/1_azure_speech/9_info.png -------------------------------------------------------------------------------- /docs/imgs/2_demo/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/docs/imgs/2_demo/demo.png -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/LoadingIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/src/components/LoadingIcon.vue -------------------------------------------------------------------------------- /src/components/MyTimer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/src/components/MyTimer.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/utils/config_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/src/utils/config_util.js -------------------------------------------------------------------------------- /src/views/Empty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/src/views/Empty.vue -------------------------------------------------------------------------------- /src/views/HomeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/src/views/HomeView.vue -------------------------------------------------------------------------------- /src/views/Setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/src/views/Setting.vue -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interview-copilot/Interview-Copilot/HEAD/vue.config.js --------------------------------------------------------------------------------