-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changelog: - Working on the new library types, "Others" - You can rescan all libraries from settings or the lib page - Filter added, you can select the movies genre, and order by alphabetic, rate, date in ascendant, or descendant way
- Loading branch information
1 parent
a35a705
commit 0172a7d
Showing
33 changed files
with
2,775 additions
and
381 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,5 @@ static/bios/* | |
!static/bios/readme.txt | ||
.vscode/tasks.json | ||
static/img/* | ||
.venv | ||
.venv | ||
database.db-journal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM python:3.10-slim-buster | ||
|
||
RUN apt-get update && apt-get install -y ffmpeg && apt-get install -y git | ||
|
||
COPY requirements.txt . | ||
RUN pip install -r requirements.txt | ||
|
||
COPY . /app | ||
|
||
CMD ["python", "/app/app.py"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.