From ada5dc42aa51f48d12b44e9241d76e84ad62190c Mon Sep 17 00:00:00 2001 From: X-20A <155217226+X-20A@users.noreply.github.com> Date: Sat, 15 Jun 2024 06:54:06 +0900 Subject: [PATCH] =?UTF-8?q?=E7=89=87=E4=BB=98=E3=81=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.production | 14 ++++++++++++++ .env.test | 14 ++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 .env.production create mode 100644 .env.test diff --git a/.env.production b/.env.production new file mode 100644 index 0000000000..5b0dcb0498 --- /dev/null +++ b/.env.production @@ -0,0 +1,14 @@ +VITE_APP_NAME=voicevox +VITE_DEFAULT_ENGINE_INFOS=`[ + { + "uuid": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "name": "VOICEVOX Engine", + "executionEnabled": true, + "executionFilePath": "vv-engine/run.exe", + "executionArgs": [], + "host": "http://127.0.0.1:50021" + } +]` +VITE_OFFICIAL_WEBSITE_URL=https://voicevox.hiroshiba.jp/ +VITE_LATEST_UPDATE_INFOS_URL=https://raw.githubusercontent.com/VOICEVOX/voicevox_blog/master/src/data/updateInfos.json +VITE_GTM_CONTAINER_ID=GTM-DUMMY diff --git a/.env.test b/.env.test new file mode 100644 index 0000000000..dcf447f8b2 --- /dev/null +++ b/.env.test @@ -0,0 +1,14 @@ +VITE_APP_NAME=voicevox +VITE_DEFAULT_ENGINE_INFOS=`[ + { + "uuid": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "name": "VOICEVOX Engine", + "executionEnabled": true, + "executionFilePath": "../voicevox_engine/run.exe", + "executionArgs": [], + "host": "http://127.0.0.1:50021" + } +]` +VITE_OFFICIAL_WEBSITE_URL=https://voicevox.hiroshiba.jp/ +VITE_LATEST_UPDATE_INFOS_URL=https://raw.githubusercontent.com/VOICEVOX/voicevox_blog/master/src/data/updateInfos.json +VITE_GTM_CONTAINER_ID=GTM-DUMMY