- Added various sound files to the soundboard, including insults, quotes, and sound effects. - Introduced new dependencies: ffmpeg-python (version 0.2.0) and pydub (version 0.25.1) for audio processing. - Updated the lock file to reflect the new packages and their respective versions. - Added .gitignore files in the sounds/stream and sounds/temp directories to exclude unnecessary files.
17 lines
438 B
Bash
Executable File
17 lines
438 B
Bash
Executable File
#!/bin/bash
|
|
|
|
shopt -s extglob
|
|
|
|
rm instance/soundboard.db
|
|
|
|
rm -rf alembic/versions/!(.gitignore)
|
|
rm -rf sounds/say/!(.gitignore)
|
|
rm -rf sounds/stream/!(.gitignore|thumbnails)
|
|
rm -rf sounds/stream/thumbnails/!(.gitignore)
|
|
rm -rf sounds/temp/!(.gitignore)
|
|
rm -rf sounds/normalized/say/!(.gitignore)
|
|
rm -rf sounds/normalized/soundboard/!(.gitignore)
|
|
rm -rf sounds/normalized/stream/!(.gitignore)
|
|
|
|
# uv run migrate_db.py init-db
|
|
uv run main.py |