diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..68ed7e3 Binary files /dev/null and b/.env.example differ diff --git a/.gitignore b/.gitignore index 8bf7970..df81756 100644 --- a/.gitignore +++ b/.gitignore @@ -963,9 +963,23 @@ app.*.symbols !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages !/dev/ci/**/Gemfile.lock -#Storage files -storage/ +# Storage files +storage/documents/* +storage/transcriptionSummaries/* +storage/transcripts/* +storage/video/* +# The inverse for the .gitkeep files, to make sure the folders are there but not the local files +!storage/documents/.gitkeep +!storage/transcriptionSummaries/.gitkeep +!storage/transcripts/.gitkeep +!storage/video/.gitkeep *.mp4 +*.webm +*.mp3 +*.mov *.wav *.flac + + +!testvideo.mp4 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5bebd17..b713866 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,33 +1,28 @@ -workflow: - rules: - # Run the pipeline for merge requests or when committing to a branch - - if: $CI_PIPELINE_SOURCE == "merge_request_event" - - if: $CI_COMMIT_BRANCH - -image: python:3.14.0 +image: node:latest stages: - - setup + # - install - test -setup_environment: - stage: setup - script: - - pip install --upgrade pip - - pip install -r requirements.txt - - echo "Dependencies installed successfully." +# job-install: +# stage: install +# script: +# - npm install +# artifacts: +# untracked: false +# when: on_success +# access: all +# expire_in: "30 days" +# paths: +# - node_modules - only: - - main - - feature/ci-pipeline-s1-09a-1 # You can add more branches if needed -test_app: + +job-test: stage: test script: - - echo "Running V2D Framework basic test..." - - python -m unittest discover || echo "No tests found." - - only: - - main - - feature/ci-pipeline-s1-09a-1 - + - npm install + - echo "ASSEMBLYAI_API_KEY=$apikey_assembly" > .env + - echo "GOOGLE_API_KEY=$apikey_gemini" >> .env + - echo "SAIA_API_KEY=$apikey_saia" >> .env + - npm test \ No newline at end of file diff --git a/electron/main/index.html b/electron/main/index.html index f88b4c2..2974b34 100644 --- a/electron/main/index.html +++ b/electron/main/index.html @@ -7,46 +7,156 @@
+ +Drag and drop video file
+ +Drag and drop video file
-