├── .dockerignore ├── .env.local ├── .eslintrc.json ├── .gitignore ├── .hintrc ├── Dockerfile ├── LICENSE.md ├── README.md ├── docker-compose.yml ├── next.config.js ├── package.json ├── postcss.config.js ├── prisma ├── migrations │ ├── 20250202194835_init │ │ └── migration.sql │ ├── 20250202195633_updated_model │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── public ├── 156-popsicle.svg ├── 184-pear.svg ├── Cover │ └── 404.png ├── cover.png ├── cover4.jpg ├── favicon.ico ├── fonts │ ├── LICENSE.txt │ ├── Roboto-Black.ttf │ ├── Roboto-BlackItalic.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-LightItalic.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-MediumItalic.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-Thin.ttf │ └── Roboto-ThinItalic.ttf ├── logo1.svg ├── next.svg ├── oneLine.svg ├── planet.svg ├── threeLines.svg ├── twoLines.svg └── vercel.svg ├── pubsub-debug.log ├── setup.sh ├── src ├── components │ ├── Auth │ │ ├── Auth.tsx │ │ ├── Login.tsx │ │ ├── LoginForm.tsx │ │ ├── SignUpWithLink.tsx │ │ ├── Signup.tsx │ │ └── UserAuthForm.tsx │ ├── Debug │ │ └── ReduxMonitor.tsx │ ├── Layout │ │ └── Layout.tsx │ ├── SVG │ │ ├── OneDivider.tsx │ │ ├── ThreeDivider.tsx │ │ └── TwoDivider.tsx │ ├── Settings │ │ ├── Layout │ │ │ └── SettingsLayout.tsx │ │ ├── Modal │ │ │ └── SettingsModal.tsx │ │ └── Tabs │ │ │ ├── ApiTab.tsx │ │ │ ├── GlossaryTab.tsx │ │ │ ├── PresetsTab.tsx │ │ │ ├── ProfileSettings.tsx │ │ │ ├── ProfileTab.tsx │ │ │ ├── SecuritySettings.tsx │ │ │ ├── SubtitleParameters │ │ │ ├── LineStyleButtons.tsx │ │ │ ├── SliderWithInput.tsx │ │ │ └── SubtitleParameters.tsx │ │ │ ├── Tabs.tsx │ │ │ └── TabsManager.tsx │ ├── Transciptions │ │ ├── AudioPlayer │ │ │ └── AudioPlayer.tsx │ │ ├── Control │ │ │ └── ControlPanel.tsx │ │ ├── Editor │ │ │ ├── EditorLight.tsx │ │ │ ├── UI │ │ │ │ ├── FloatingMenue.tsx │ │ │ │ ├── RenderElement.tsx │ │ │ │ ├── RenderLeaf.tsx │ │ │ │ └── Toast │ │ │ │ │ └── EditorToast.tsx │ │ │ ├── speakers │ │ │ │ └── SpeakerSelector.tsx │ │ │ └── utils │ │ │ │ ├── functions.tsx │ │ │ │ └── utteranceToDescendant.ts │ │ ├── Export │ │ │ ├── ExportModal.tsx │ │ │ └── TranscriptionTitleChange.tsx │ │ ├── InfoBox │ │ │ ├── GoBack.tsx │ │ │ └── InfoBox.tsx │ │ ├── List │ │ │ ├── Items │ │ │ │ └── Item.tsx │ │ │ ├── MenueSelection │ │ │ │ └── MenueSelection.tsx │ │ │ └── TranscriptionsList.tsx │ │ ├── Second │ │ │ └── AudioPlayer.tsx │ │ └── versions │ │ │ └── VersionsList.tsx │ ├── UI │ │ ├── Dropdown │ │ │ ├── LanguageDropdown │ │ │ │ ├── DropdownAllLanguages.tsx │ │ │ │ └── DropdownLanguages.tsx │ │ │ └── util │ │ │ │ └── util.tsx │ │ ├── FloatingElement │ │ │ └── Menue │ │ │ │ └── ProfileMenuDropdown.tsx │ │ ├── Modal │ │ │ ├── BtnOrdersMenue.tsx │ │ │ ├── LocalModal.tsx │ │ │ ├── Modal.tsx │ │ │ ├── ModalManager.tsx │ │ │ ├── OrdersMenue.tsx │ │ │ ├── Uppy │ │ │ │ ├── MyUploadComponent.module.css │ │ │ │ ├── UploaderUppy.tsx │ │ │ │ └── utils │ │ │ │ │ └── getFileDuration.tsx │ │ │ └── orders │ │ │ │ ├── Transcribe │ │ │ │ ├── CustomLocalModal.tsx │ │ │ │ └── TranscribeModal.tsx │ │ │ │ └── UI │ │ │ │ ├── CloseModalTranscription.tsx │ │ │ │ └── Order.tsx │ │ ├── Table │ │ │ ├── StatusBadge.tsx │ │ │ └── TableHeader.tsx │ │ ├── Toast │ │ │ └── ToastManager.tsx │ │ └── UX │ │ │ ├── EmptyState.tsx │ │ │ ├── ErrorState.tsx │ │ │ └── LoadingState.tsx │ └── sideBar │ │ ├── HalfwayLogo.tsx │ │ ├── Header │ │ ├── Header.tsx │ │ └── UserProfile │ │ │ ├── Dropdown │ │ │ └── Dropdown.tsx │ │ │ └── Profile.tsx │ │ └── Menue │ │ ├── Menue.tsx │ │ ├── MenueItem.tsx │ │ └── MenueItems.tsx ├── config │ ├── redux │ │ └── store │ │ │ ├── fileSlice.tsx │ │ │ ├── modalSlice.tsx │ │ │ ├── profileMenueSlice.tsx │ │ │ ├── store.ts │ │ │ └── toastSlice.tsx │ └── util │ │ ├── context │ │ ├── useCurrentTimeContext.tsx │ │ ├── useEditorContext.tsx │ │ └── useUserData.tsx │ │ ├── functions │ │ ├── conversion │ │ │ ├── conversionService.ts │ │ │ └── functions │ │ │ │ ├── convertToCsv.ts │ │ │ │ ├── convertToDocx.ts │ │ │ │ ├── convertToPDF.ts │ │ │ │ ├── convertToSrt.ts │ │ │ │ ├── convertToText.ts │ │ │ │ └── convertToWebVTT.ts │ │ ├── download │ │ │ └── util.tsx │ │ └── format │ │ │ └── fn.ts │ │ ├── hooks │ │ ├── global │ │ │ └── useGlobal.tsx │ │ ├── transcription │ │ │ └── client │ │ │ │ ├── useCreateTranscriptionVersion.ts │ │ │ │ └── useTranscribe.ts │ │ └── useDebounce.ts │ │ ├── services │ │ ├── minio │ │ │ └── S3ClientClassMinio.ts │ │ └── transcriptionService.ts │ │ └── workflows │ │ └── serverSide │ │ └── createTranscription.ts ├── hooks │ ├── useAuth.ts │ └── useTranscription.ts ├── lib │ ├── cors.ts │ ├── prisma.ts │ ├── server │ │ └── startupService.ts │ ├── services │ │ ├── TranscriptionPollingService.ts │ │ └── pollingManager.ts │ └── utils │ │ └── pathGenerators.ts ├── middleware.ts ├── pages │ ├── 404.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── api │ │ ├── auth │ │ │ ├── [...nextauth].ts │ │ │ └── signup.ts │ │ ├── media │ │ │ └── [id].ts │ │ ├── minio-proxy │ │ │ └── [...path].ts │ │ ├── settings │ │ │ ├── credentials.ts │ │ │ ├── update-password.ts │ │ │ └── update-profile.ts │ │ ├── transcriptions │ │ │ ├── [id] │ │ │ │ ├── index.ts │ │ │ │ └── versions.ts │ │ │ └── index.ts │ │ └── v1 │ │ │ ├── polling │ │ │ └── index.ts │ │ │ ├── s3 │ │ │ ├── delete.ts │ │ │ ├── getFileDuration.ts │ │ │ ├── s3Upload.ts │ │ │ └── uploadVersion.ts │ │ │ └── transcription │ │ │ ├── convert │ │ │ └── index.ts │ │ │ ├── create.ts │ │ │ ├── delete.ts │ │ │ └── version │ │ │ └── create.ts │ ├── index.tsx │ ├── login │ │ └── index.tsx │ ├── settings │ │ └── index.tsx │ └── transcription │ │ └── [id] │ │ ├── index.tsx │ │ └── versions │ │ └── index.tsx ├── styles │ ├── fonts.css │ └── globals.css └── types │ ├── eventLog.ts │ ├── extendedFile.tsx │ ├── transcription.ts │ ├── transcriptionDocument.ts │ ├── user.ts │ ├── version.ts │ └── workspace.ts ├── tailwind.config.ts └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/.env.local -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/.gitignore -------------------------------------------------------------------------------- /.hintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/.hintrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prisma/migrations/20250202194835_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/prisma/migrations/20250202194835_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20250202195633_updated_model/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/prisma/migrations/20250202195633_updated_model/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/156-popsicle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/156-popsicle.svg -------------------------------------------------------------------------------- /public/184-pear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/184-pear.svg -------------------------------------------------------------------------------- /public/Cover/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/Cover/404.png -------------------------------------------------------------------------------- /public/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/cover.png -------------------------------------------------------------------------------- /public/cover4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/cover4.jpg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/fonts/LICENSE.txt -------------------------------------------------------------------------------- /public/fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/fonts/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/fonts/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/fonts/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/fonts/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/fonts/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /public/logo1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/logo1.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/oneLine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/oneLine.svg -------------------------------------------------------------------------------- /public/planet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/planet.svg -------------------------------------------------------------------------------- /public/threeLines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/threeLines.svg -------------------------------------------------------------------------------- /public/twoLines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/twoLines.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /pubsub-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/pubsub-debug.log -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/setup.sh -------------------------------------------------------------------------------- /src/components/Auth/Auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Auth/Auth.tsx -------------------------------------------------------------------------------- /src/components/Auth/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Auth/Login.tsx -------------------------------------------------------------------------------- /src/components/Auth/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Auth/LoginForm.tsx -------------------------------------------------------------------------------- /src/components/Auth/SignUpWithLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Auth/SignUpWithLink.tsx -------------------------------------------------------------------------------- /src/components/Auth/Signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Auth/Signup.tsx -------------------------------------------------------------------------------- /src/components/Auth/UserAuthForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Auth/UserAuthForm.tsx -------------------------------------------------------------------------------- /src/components/Debug/ReduxMonitor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Debug/ReduxMonitor.tsx -------------------------------------------------------------------------------- /src/components/Layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Layout/Layout.tsx -------------------------------------------------------------------------------- /src/components/SVG/OneDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/SVG/OneDivider.tsx -------------------------------------------------------------------------------- /src/components/SVG/ThreeDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/SVG/ThreeDivider.tsx -------------------------------------------------------------------------------- /src/components/SVG/TwoDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/SVG/TwoDivider.tsx -------------------------------------------------------------------------------- /src/components/Settings/Layout/SettingsLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Settings/Layout/SettingsLayout.tsx -------------------------------------------------------------------------------- /src/components/Settings/Modal/SettingsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Settings/Modal/SettingsModal.tsx -------------------------------------------------------------------------------- /src/components/Settings/Tabs/ApiTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Settings/Tabs/ApiTab.tsx -------------------------------------------------------------------------------- /src/components/Settings/Tabs/GlossaryTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Settings/Tabs/GlossaryTab.tsx -------------------------------------------------------------------------------- /src/components/Settings/Tabs/PresetsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Settings/Tabs/PresetsTab.tsx -------------------------------------------------------------------------------- /src/components/Settings/Tabs/ProfileSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Settings/Tabs/ProfileSettings.tsx -------------------------------------------------------------------------------- /src/components/Settings/Tabs/ProfileTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Settings/Tabs/ProfileTab.tsx -------------------------------------------------------------------------------- /src/components/Settings/Tabs/SecuritySettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Settings/Tabs/SecuritySettings.tsx -------------------------------------------------------------------------------- /src/components/Settings/Tabs/SubtitleParameters/LineStyleButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Settings/Tabs/SubtitleParameters/LineStyleButtons.tsx -------------------------------------------------------------------------------- /src/components/Settings/Tabs/SubtitleParameters/SliderWithInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Settings/Tabs/SubtitleParameters/SliderWithInput.tsx -------------------------------------------------------------------------------- /src/components/Settings/Tabs/SubtitleParameters/SubtitleParameters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Settings/Tabs/SubtitleParameters/SubtitleParameters.tsx -------------------------------------------------------------------------------- /src/components/Settings/Tabs/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Settings/Tabs/Tabs.tsx -------------------------------------------------------------------------------- /src/components/Settings/Tabs/TabsManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Settings/Tabs/TabsManager.tsx -------------------------------------------------------------------------------- /src/components/Transciptions/AudioPlayer/AudioPlayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Transciptions/AudioPlayer/AudioPlayer.tsx -------------------------------------------------------------------------------- /src/components/Transciptions/Control/ControlPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Transciptions/Control/ControlPanel.tsx -------------------------------------------------------------------------------- /src/components/Transciptions/Editor/EditorLight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Transciptions/Editor/EditorLight.tsx -------------------------------------------------------------------------------- /src/components/Transciptions/Editor/UI/FloatingMenue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Transciptions/Editor/UI/FloatingMenue.tsx -------------------------------------------------------------------------------- /src/components/Transciptions/Editor/UI/RenderElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Transciptions/Editor/UI/RenderElement.tsx -------------------------------------------------------------------------------- /src/components/Transciptions/Editor/UI/RenderLeaf.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Transciptions/Editor/UI/RenderLeaf.tsx -------------------------------------------------------------------------------- /src/components/Transciptions/Editor/UI/Toast/EditorToast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Transciptions/Editor/UI/Toast/EditorToast.tsx -------------------------------------------------------------------------------- /src/components/Transciptions/Editor/speakers/SpeakerSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Transciptions/Editor/speakers/SpeakerSelector.tsx -------------------------------------------------------------------------------- /src/components/Transciptions/Editor/utils/functions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Transciptions/Editor/utils/functions.tsx -------------------------------------------------------------------------------- /src/components/Transciptions/Editor/utils/utteranceToDescendant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Transciptions/Editor/utils/utteranceToDescendant.ts -------------------------------------------------------------------------------- /src/components/Transciptions/Export/ExportModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Transciptions/Export/ExportModal.tsx -------------------------------------------------------------------------------- /src/components/Transciptions/Export/TranscriptionTitleChange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Transciptions/Export/TranscriptionTitleChange.tsx -------------------------------------------------------------------------------- /src/components/Transciptions/InfoBox/GoBack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Transciptions/InfoBox/GoBack.tsx -------------------------------------------------------------------------------- /src/components/Transciptions/InfoBox/InfoBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Transciptions/InfoBox/InfoBox.tsx -------------------------------------------------------------------------------- /src/components/Transciptions/List/Items/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Transciptions/List/Items/Item.tsx -------------------------------------------------------------------------------- /src/components/Transciptions/List/MenueSelection/MenueSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Transciptions/List/MenueSelection/MenueSelection.tsx -------------------------------------------------------------------------------- /src/components/Transciptions/List/TranscriptionsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Transciptions/List/TranscriptionsList.tsx -------------------------------------------------------------------------------- /src/components/Transciptions/Second/AudioPlayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Transciptions/Second/AudioPlayer.tsx -------------------------------------------------------------------------------- /src/components/Transciptions/versions/VersionsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/Transciptions/versions/VersionsList.tsx -------------------------------------------------------------------------------- /src/components/UI/Dropdown/LanguageDropdown/DropdownAllLanguages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/Dropdown/LanguageDropdown/DropdownAllLanguages.tsx -------------------------------------------------------------------------------- /src/components/UI/Dropdown/LanguageDropdown/DropdownLanguages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/Dropdown/LanguageDropdown/DropdownLanguages.tsx -------------------------------------------------------------------------------- /src/components/UI/Dropdown/util/util.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/Dropdown/util/util.tsx -------------------------------------------------------------------------------- /src/components/UI/FloatingElement/Menue/ProfileMenuDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/FloatingElement/Menue/ProfileMenuDropdown.tsx -------------------------------------------------------------------------------- /src/components/UI/Modal/BtnOrdersMenue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/Modal/BtnOrdersMenue.tsx -------------------------------------------------------------------------------- /src/components/UI/Modal/LocalModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/Modal/LocalModal.tsx -------------------------------------------------------------------------------- /src/components/UI/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/Modal/Modal.tsx -------------------------------------------------------------------------------- /src/components/UI/Modal/ModalManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/Modal/ModalManager.tsx -------------------------------------------------------------------------------- /src/components/UI/Modal/OrdersMenue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/Modal/OrdersMenue.tsx -------------------------------------------------------------------------------- /src/components/UI/Modal/Uppy/MyUploadComponent.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/Modal/Uppy/MyUploadComponent.module.css -------------------------------------------------------------------------------- /src/components/UI/Modal/Uppy/UploaderUppy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/Modal/Uppy/UploaderUppy.tsx -------------------------------------------------------------------------------- /src/components/UI/Modal/Uppy/utils/getFileDuration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/Modal/Uppy/utils/getFileDuration.tsx -------------------------------------------------------------------------------- /src/components/UI/Modal/orders/Transcribe/CustomLocalModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/Modal/orders/Transcribe/CustomLocalModal.tsx -------------------------------------------------------------------------------- /src/components/UI/Modal/orders/Transcribe/TranscribeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/Modal/orders/Transcribe/TranscribeModal.tsx -------------------------------------------------------------------------------- /src/components/UI/Modal/orders/UI/CloseModalTranscription.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/Modal/orders/UI/CloseModalTranscription.tsx -------------------------------------------------------------------------------- /src/components/UI/Modal/orders/UI/Order.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/Modal/orders/UI/Order.tsx -------------------------------------------------------------------------------- /src/components/UI/Table/StatusBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/Table/StatusBadge.tsx -------------------------------------------------------------------------------- /src/components/UI/Table/TableHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/Table/TableHeader.tsx -------------------------------------------------------------------------------- /src/components/UI/Toast/ToastManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/Toast/ToastManager.tsx -------------------------------------------------------------------------------- /src/components/UI/UX/EmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/UX/EmptyState.tsx -------------------------------------------------------------------------------- /src/components/UI/UX/ErrorState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/UX/ErrorState.tsx -------------------------------------------------------------------------------- /src/components/UI/UX/LoadingState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/UI/UX/LoadingState.tsx -------------------------------------------------------------------------------- /src/components/sideBar/HalfwayLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/sideBar/HalfwayLogo.tsx -------------------------------------------------------------------------------- /src/components/sideBar/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/sideBar/Header/Header.tsx -------------------------------------------------------------------------------- /src/components/sideBar/Header/UserProfile/Dropdown/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/sideBar/Header/UserProfile/Dropdown/Dropdown.tsx -------------------------------------------------------------------------------- /src/components/sideBar/Header/UserProfile/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/sideBar/Header/UserProfile/Profile.tsx -------------------------------------------------------------------------------- /src/components/sideBar/Menue/Menue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/sideBar/Menue/Menue.tsx -------------------------------------------------------------------------------- /src/components/sideBar/Menue/MenueItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/sideBar/Menue/MenueItem.tsx -------------------------------------------------------------------------------- /src/components/sideBar/Menue/MenueItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/components/sideBar/Menue/MenueItems.tsx -------------------------------------------------------------------------------- /src/config/redux/store/fileSlice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/redux/store/fileSlice.tsx -------------------------------------------------------------------------------- /src/config/redux/store/modalSlice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/redux/store/modalSlice.tsx -------------------------------------------------------------------------------- /src/config/redux/store/profileMenueSlice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/redux/store/profileMenueSlice.tsx -------------------------------------------------------------------------------- /src/config/redux/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/redux/store/store.ts -------------------------------------------------------------------------------- /src/config/redux/store/toastSlice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/redux/store/toastSlice.tsx -------------------------------------------------------------------------------- /src/config/util/context/useCurrentTimeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/util/context/useCurrentTimeContext.tsx -------------------------------------------------------------------------------- /src/config/util/context/useEditorContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/util/context/useEditorContext.tsx -------------------------------------------------------------------------------- /src/config/util/context/useUserData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/util/context/useUserData.tsx -------------------------------------------------------------------------------- /src/config/util/functions/conversion/conversionService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/util/functions/conversion/conversionService.ts -------------------------------------------------------------------------------- /src/config/util/functions/conversion/functions/convertToCsv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/util/functions/conversion/functions/convertToCsv.ts -------------------------------------------------------------------------------- /src/config/util/functions/conversion/functions/convertToDocx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/util/functions/conversion/functions/convertToDocx.ts -------------------------------------------------------------------------------- /src/config/util/functions/conversion/functions/convertToPDF.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/util/functions/conversion/functions/convertToPDF.ts -------------------------------------------------------------------------------- /src/config/util/functions/conversion/functions/convertToSrt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/util/functions/conversion/functions/convertToSrt.ts -------------------------------------------------------------------------------- /src/config/util/functions/conversion/functions/convertToText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/util/functions/conversion/functions/convertToText.ts -------------------------------------------------------------------------------- /src/config/util/functions/conversion/functions/convertToWebVTT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/util/functions/conversion/functions/convertToWebVTT.ts -------------------------------------------------------------------------------- /src/config/util/functions/download/util.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/util/functions/download/util.tsx -------------------------------------------------------------------------------- /src/config/util/functions/format/fn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/util/functions/format/fn.ts -------------------------------------------------------------------------------- /src/config/util/hooks/global/useGlobal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/util/hooks/global/useGlobal.tsx -------------------------------------------------------------------------------- /src/config/util/hooks/transcription/client/useCreateTranscriptionVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/util/hooks/transcription/client/useCreateTranscriptionVersion.ts -------------------------------------------------------------------------------- /src/config/util/hooks/transcription/client/useTranscribe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/util/hooks/transcription/client/useTranscribe.ts -------------------------------------------------------------------------------- /src/config/util/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/util/hooks/useDebounce.ts -------------------------------------------------------------------------------- /src/config/util/services/minio/S3ClientClassMinio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/util/services/minio/S3ClientClassMinio.ts -------------------------------------------------------------------------------- /src/config/util/services/transcriptionService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/util/services/transcriptionService.ts -------------------------------------------------------------------------------- /src/config/util/workflows/serverSide/createTranscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/config/util/workflows/serverSide/createTranscription.ts -------------------------------------------------------------------------------- /src/hooks/useAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/hooks/useAuth.ts -------------------------------------------------------------------------------- /src/hooks/useTranscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/hooks/useTranscription.ts -------------------------------------------------------------------------------- /src/lib/cors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/lib/cors.ts -------------------------------------------------------------------------------- /src/lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/lib/prisma.ts -------------------------------------------------------------------------------- /src/lib/server/startupService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/lib/server/startupService.ts -------------------------------------------------------------------------------- /src/lib/services/TranscriptionPollingService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/lib/services/TranscriptionPollingService.ts -------------------------------------------------------------------------------- /src/lib/services/pollingManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/lib/services/pollingManager.ts -------------------------------------------------------------------------------- /src/lib/utils/pathGenerators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/lib/utils/pathGenerators.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/api/auth/[...nextauth].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/api/auth/[...nextauth].ts -------------------------------------------------------------------------------- /src/pages/api/auth/signup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/api/auth/signup.ts -------------------------------------------------------------------------------- /src/pages/api/media/[id].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/api/media/[id].ts -------------------------------------------------------------------------------- /src/pages/api/minio-proxy/[...path].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/api/minio-proxy/[...path].ts -------------------------------------------------------------------------------- /src/pages/api/settings/credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/api/settings/credentials.ts -------------------------------------------------------------------------------- /src/pages/api/settings/update-password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/api/settings/update-password.ts -------------------------------------------------------------------------------- /src/pages/api/settings/update-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/api/settings/update-profile.ts -------------------------------------------------------------------------------- /src/pages/api/transcriptions/[id]/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/api/transcriptions/[id]/index.ts -------------------------------------------------------------------------------- /src/pages/api/transcriptions/[id]/versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/api/transcriptions/[id]/versions.ts -------------------------------------------------------------------------------- /src/pages/api/transcriptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/api/transcriptions/index.ts -------------------------------------------------------------------------------- /src/pages/api/v1/polling/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/api/v1/polling/index.ts -------------------------------------------------------------------------------- /src/pages/api/v1/s3/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/api/v1/s3/delete.ts -------------------------------------------------------------------------------- /src/pages/api/v1/s3/getFileDuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/api/v1/s3/getFileDuration.ts -------------------------------------------------------------------------------- /src/pages/api/v1/s3/s3Upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/api/v1/s3/s3Upload.ts -------------------------------------------------------------------------------- /src/pages/api/v1/s3/uploadVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/api/v1/s3/uploadVersion.ts -------------------------------------------------------------------------------- /src/pages/api/v1/transcription/convert/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/api/v1/transcription/convert/index.ts -------------------------------------------------------------------------------- /src/pages/api/v1/transcription/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/api/v1/transcription/create.ts -------------------------------------------------------------------------------- /src/pages/api/v1/transcription/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/api/v1/transcription/delete.ts -------------------------------------------------------------------------------- /src/pages/api/v1/transcription/version/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/api/v1/transcription/version/create.ts -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/login/index.tsx -------------------------------------------------------------------------------- /src/pages/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/settings/index.tsx -------------------------------------------------------------------------------- /src/pages/transcription/[id]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/transcription/[id]/index.tsx -------------------------------------------------------------------------------- /src/pages/transcription/[id]/versions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/pages/transcription/[id]/versions/index.tsx -------------------------------------------------------------------------------- /src/styles/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/styles/fonts.css -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types/eventLog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/types/eventLog.ts -------------------------------------------------------------------------------- /src/types/extendedFile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/types/extendedFile.tsx -------------------------------------------------------------------------------- /src/types/transcription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/types/transcription.ts -------------------------------------------------------------------------------- /src/types/transcriptionDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/types/transcriptionDocument.ts -------------------------------------------------------------------------------- /src/types/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/types/user.ts -------------------------------------------------------------------------------- /src/types/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/types/version.ts -------------------------------------------------------------------------------- /src/types/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/src/types/workspace.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaljumaa/halfwayml_open/HEAD/tsconfig.json --------------------------------------------------------------------------------