JakgritB commited on
Commit
12a024d
·
0 Parent(s):

chore: initialize project metadata

Browse files

Add the environment template, ignore rules, and MIT license required for an open hackathon submission.

Files changed (3) hide show
  1. .env.example +18 -0
  2. .gitignore +22 -0
  3. LICENSE +21 -0
.env.example ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ DEMO_MODE=true
2
+ STORAGE_DIR=backend/data
3
+ FRONTEND_ORIGIN=http://localhost:5173
4
+
5
+ WHISPER_MODEL_ID=openai/whisper-large-v3
6
+ QWEN_TEXT_MODEL_ID=Qwen/Qwen2.5-7B-Instruct
7
+ QWEN_VL_MODEL_ID=Qwen/Qwen2-VL-7B-Instruct
8
+ HF_TOKEN=
9
+
10
+ TARGET_CLIP_COUNT=5
11
+ MAX_CLIPS=10
12
+ FFMPEG_BINARY=ffmpeg
13
+ FFPROBE_BINARY=ffprobe
14
+ FFMPEG_VIDEO_CODEC=h264_amf
15
+ FFMPEG_CPU_CODEC=libx264
16
+
17
+ REDIS_URL=redis://redis:6379/0
18
+ CELERY_ENABLED=false
.gitignore ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .env
2
+ .venv/
3
+ .python_packages/
4
+ __pycache__/
5
+ *.pyc
6
+ *.egg-info/
7
+ .pytest_cache/
8
+ .mypy_cache/
9
+ .ruff_cache/
10
+
11
+ node_modules/
12
+ dist/
13
+ .vite/
14
+
15
+ data/
16
+ backend/data/
17
+ tmp/
18
+ pip-tmp/
19
+ *.log
20
+
21
+ .DS_Store
22
+ Thumbs.db
LICENSE ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (c) 2026 ElevenClip.AI contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.