Commit ·
c0cf91a
1
Parent(s): 5134951
Remove __pycache__ and add .gitignore
Browse files- .gitignore +36 -0
- __pycache__/app.cpython-313.pyc +0 -0
- __pycache__/config.cpython-313.pyc +0 -0
- core/__pycache__/module_registry.cpython-313.pyc +0 -0
- modules/story_reels/__pycache__/__init__.cpython-313.pyc +0 -0
- modules/story_reels/__pycache__/router.cpython-313.pyc +0 -0
- modules/story_reels/__pycache__/schemas.cpython-313.pyc +0 -0
- modules/story_reels/services/__pycache__/cloudflare_client.cpython-313.pyc +0 -0
- modules/story_reels/services/__pycache__/nvidia_client.cpython-313.pyc +0 -0
- modules/story_reels/services/__pycache__/prompt_builder.cpython-313.pyc +0 -0
- modules/story_reels/services/__pycache__/script_generator.cpython-313.pyc +0 -0
- modules/story_reels/services/__pycache__/srt_parser.cpython-313.pyc +0 -0
- modules/story_reels/services/__pycache__/story_creator.cpython-313.pyc +0 -0
- modules/video_creator/__pycache__/__init__.cpython-313.pyc +0 -0
- modules/video_creator/__pycache__/router.cpython-313.pyc +0 -0
- modules/video_creator/services/__pycache__/__init__.cpython-313.pyc +0 -0
- modules/video_creator/services/__pycache__/short_creator.cpython-313.pyc +0 -0
- modules/video_creator/services/libraries/__pycache__/__init__.cpython-313.pyc +0 -0
- modules/video_creator/services/libraries/__pycache__/tts_client.cpython-313.pyc +0 -0
- modules/video_creator/services/libraries/__pycache__/whisper_client.cpython-313.pyc +0 -0
.gitignore
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
*$py.class
|
| 5 |
+
*.so
|
| 6 |
+
.Python
|
| 7 |
+
build/
|
| 8 |
+
dist/
|
| 9 |
+
*.egg-info/
|
| 10 |
+
.eggs/
|
| 11 |
+
|
| 12 |
+
# Virtual Environment
|
| 13 |
+
venv/
|
| 14 |
+
.env
|
| 15 |
+
env/
|
| 16 |
+
|
| 17 |
+
# IDE
|
| 18 |
+
.vscode/
|
| 19 |
+
.idea/
|
| 20 |
+
*.swp
|
| 21 |
+
*.swo
|
| 22 |
+
|
| 23 |
+
# OS
|
| 24 |
+
.DS_Store
|
| 25 |
+
Thumbs.db
|
| 26 |
+
|
| 27 |
+
# Local data
|
| 28 |
+
/data/
|
| 29 |
+
/videos/
|
| 30 |
+
/temp/
|
| 31 |
+
*.mp4
|
| 32 |
+
*.wav
|
| 33 |
+
*.mp3
|
| 34 |
+
|
| 35 |
+
# Logs
|
| 36 |
+
*.log
|
__pycache__/app.cpython-313.pyc
DELETED
|
Binary file (4.3 kB)
|
|
|
__pycache__/config.cpython-313.pyc
DELETED
|
Binary file (4.78 kB)
|
|
|
core/__pycache__/module_registry.cpython-313.pyc
DELETED
|
Binary file (6.54 kB)
|
|
|
modules/story_reels/__pycache__/__init__.cpython-313.pyc
DELETED
|
Binary file (3.79 kB)
|
|
|
modules/story_reels/__pycache__/router.cpython-313.pyc
DELETED
|
Binary file (4.27 kB)
|
|
|
modules/story_reels/__pycache__/schemas.cpython-313.pyc
DELETED
|
Binary file (5.59 kB)
|
|
|
modules/story_reels/services/__pycache__/cloudflare_client.cpython-313.pyc
DELETED
|
Binary file (7.43 kB)
|
|
|
modules/story_reels/services/__pycache__/nvidia_client.cpython-313.pyc
DELETED
|
Binary file (9.05 kB)
|
|
|
modules/story_reels/services/__pycache__/prompt_builder.cpython-313.pyc
DELETED
|
Binary file (6.05 kB)
|
|
|
modules/story_reels/services/__pycache__/script_generator.cpython-313.pyc
DELETED
|
Binary file (9.94 kB)
|
|
|
modules/story_reels/services/__pycache__/srt_parser.cpython-313.pyc
DELETED
|
Binary file (8.95 kB)
|
|
|
modules/story_reels/services/__pycache__/story_creator.cpython-313.pyc
DELETED
|
Binary file (22 kB)
|
|
|
modules/video_creator/__pycache__/__init__.cpython-313.pyc
DELETED
|
Binary file (3.34 kB)
|
|
|
modules/video_creator/__pycache__/router.cpython-313.pyc
DELETED
|
Binary file (5.3 kB)
|
|
|
modules/video_creator/services/__pycache__/__init__.cpython-313.pyc
DELETED
|
Binary file (164 Bytes)
|
|
|
modules/video_creator/services/__pycache__/short_creator.cpython-313.pyc
DELETED
|
Binary file (12.2 kB)
|
|
|
modules/video_creator/services/libraries/__pycache__/__init__.cpython-313.pyc
DELETED
|
Binary file (174 Bytes)
|
|
|
modules/video_creator/services/libraries/__pycache__/tts_client.cpython-313.pyc
DELETED
|
Binary file (5.22 kB)
|
|
|
modules/video_creator/services/libraries/__pycache__/whisper_client.cpython-313.pyc
DELETED
|
Binary file (3.56 kB)
|
|
|