cmus-web 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cmus_web-0.1.0/.dockerignore +5 -0
- cmus_web-0.1.0/.github/workflows/python-publish.yml +53 -0
- cmus_web-0.1.0/.gitignore +218 -0
- cmus_web-0.1.0/Dockerfile +73 -0
- cmus_web-0.1.0/LICENSE +674 -0
- cmus_web-0.1.0/PKG-INFO +15 -0
- cmus_web-0.1.0/README.md +192 -0
- cmus_web-0.1.0/backend/__init__.py +0 -0
- cmus_web-0.1.0/backend/cli.py +64 -0
- cmus_web-0.1.0/backend/cmus.py +287 -0
- cmus_web-0.1.0/backend/main.py +231 -0
- cmus_web-0.1.0/frontend/css/style.css +532 -0
- cmus_web-0.1.0/frontend/icons/favicon-32.png +0 -0
- cmus_web-0.1.0/frontend/icons/icon-192.png +0 -0
- cmus_web-0.1.0/frontend/icons/icon-512.png +0 -0
- cmus_web-0.1.0/frontend/index.html +161 -0
- cmus_web-0.1.0/frontend/js/app.js +256 -0
- cmus_web-0.1.0/frontend/manifest.json +21 -0
- cmus_web-0.1.0/frontend/sw.js +48 -0
- cmus_web-0.1.0/pyproject.toml +43 -0
- cmus_web-0.1.0/uv.lock +570 -0
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
name: Upload Python Package
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
types: [published]
|
|
6
|
+
|
|
7
|
+
permissions:
|
|
8
|
+
contents: read
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
release-build:
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v4
|
|
16
|
+
|
|
17
|
+
- uses: actions/setup-python@v5
|
|
18
|
+
with:
|
|
19
|
+
python-version: "3.13"
|
|
20
|
+
|
|
21
|
+
- name: Build release distributions
|
|
22
|
+
run: |
|
|
23
|
+
python -m pip install build
|
|
24
|
+
python -m build
|
|
25
|
+
|
|
26
|
+
- name: Upload distributions
|
|
27
|
+
uses: actions/upload-artifact@v4
|
|
28
|
+
with:
|
|
29
|
+
name: release-dists
|
|
30
|
+
path: dist/
|
|
31
|
+
|
|
32
|
+
pypi-publish:
|
|
33
|
+
runs-on: ubuntu-latest
|
|
34
|
+
needs:
|
|
35
|
+
- release-build
|
|
36
|
+
permissions:
|
|
37
|
+
id-token: write
|
|
38
|
+
|
|
39
|
+
environment:
|
|
40
|
+
name: pypi
|
|
41
|
+
url: https://pypi.org/p/cmus-web
|
|
42
|
+
|
|
43
|
+
steps:
|
|
44
|
+
- name: Retrieve release distributions
|
|
45
|
+
uses: actions/download-artifact@v4
|
|
46
|
+
with:
|
|
47
|
+
name: release-dists
|
|
48
|
+
path: dist/
|
|
49
|
+
|
|
50
|
+
- name: Publish release distributions to PyPI
|
|
51
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
52
|
+
with:
|
|
53
|
+
packages-dir: dist/
|
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[codz]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py.cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
88
|
+
# .python-version
|
|
89
|
+
|
|
90
|
+
# pipenv
|
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
94
|
+
# install all needed dependencies.
|
|
95
|
+
# Pipfile.lock
|
|
96
|
+
|
|
97
|
+
# UV
|
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
|
99
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
100
|
+
# commonly ignored for libraries.
|
|
101
|
+
# uv.lock
|
|
102
|
+
|
|
103
|
+
# poetry
|
|
104
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
105
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
106
|
+
# commonly ignored for libraries.
|
|
107
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
108
|
+
# poetry.lock
|
|
109
|
+
# poetry.toml
|
|
110
|
+
|
|
111
|
+
# pdm
|
|
112
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
113
|
+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
|
|
114
|
+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
|
|
115
|
+
# pdm.lock
|
|
116
|
+
# pdm.toml
|
|
117
|
+
.pdm-python
|
|
118
|
+
.pdm-build/
|
|
119
|
+
|
|
120
|
+
# pixi
|
|
121
|
+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
|
|
122
|
+
# pixi.lock
|
|
123
|
+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
|
124
|
+
# in the .venv directory. It is recommended not to include this directory in version control.
|
|
125
|
+
.pixi
|
|
126
|
+
|
|
127
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
128
|
+
__pypackages__/
|
|
129
|
+
|
|
130
|
+
# Celery stuff
|
|
131
|
+
celerybeat-schedule
|
|
132
|
+
celerybeat.pid
|
|
133
|
+
|
|
134
|
+
# Redis
|
|
135
|
+
*.rdb
|
|
136
|
+
*.aof
|
|
137
|
+
*.pid
|
|
138
|
+
|
|
139
|
+
# RabbitMQ
|
|
140
|
+
mnesia/
|
|
141
|
+
rabbitmq/
|
|
142
|
+
rabbitmq-data/
|
|
143
|
+
|
|
144
|
+
# ActiveMQ
|
|
145
|
+
activemq-data/
|
|
146
|
+
|
|
147
|
+
# SageMath parsed files
|
|
148
|
+
*.sage.py
|
|
149
|
+
|
|
150
|
+
# Environments
|
|
151
|
+
.env
|
|
152
|
+
.envrc
|
|
153
|
+
.venv
|
|
154
|
+
env/
|
|
155
|
+
venv/
|
|
156
|
+
ENV/
|
|
157
|
+
env.bak/
|
|
158
|
+
venv.bak/
|
|
159
|
+
|
|
160
|
+
# Spyder project settings
|
|
161
|
+
.spyderproject
|
|
162
|
+
.spyproject
|
|
163
|
+
|
|
164
|
+
# Rope project settings
|
|
165
|
+
.ropeproject
|
|
166
|
+
|
|
167
|
+
# mkdocs documentation
|
|
168
|
+
/site
|
|
169
|
+
|
|
170
|
+
# mypy
|
|
171
|
+
.mypy_cache/
|
|
172
|
+
.dmypy.json
|
|
173
|
+
dmypy.json
|
|
174
|
+
|
|
175
|
+
# Pyre type checker
|
|
176
|
+
.pyre/
|
|
177
|
+
|
|
178
|
+
# pytype static type analyzer
|
|
179
|
+
.pytype/
|
|
180
|
+
|
|
181
|
+
# Cython debug symbols
|
|
182
|
+
cython_debug/
|
|
183
|
+
|
|
184
|
+
# PyCharm
|
|
185
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
186
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
187
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
188
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
189
|
+
# .idea/
|
|
190
|
+
|
|
191
|
+
# Abstra
|
|
192
|
+
# Abstra is an AI-powered process automation framework.
|
|
193
|
+
# Ignore directories containing user credentials, local state, and settings.
|
|
194
|
+
# Learn more at https://abstra.io/docs
|
|
195
|
+
.abstra/
|
|
196
|
+
|
|
197
|
+
# Visual Studio Code
|
|
198
|
+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
|
|
199
|
+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
|
|
200
|
+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
|
|
201
|
+
# you could uncomment the following to ignore the entire vscode folder
|
|
202
|
+
# .vscode/
|
|
203
|
+
# Temporary file for partial code execution
|
|
204
|
+
tempCodeRunnerFile.py
|
|
205
|
+
|
|
206
|
+
# Ruff stuff:
|
|
207
|
+
.ruff_cache/
|
|
208
|
+
|
|
209
|
+
# PyPI configuration file
|
|
210
|
+
.pypirc
|
|
211
|
+
|
|
212
|
+
# Marimo
|
|
213
|
+
marimo/_static/
|
|
214
|
+
marimo/_lsp/
|
|
215
|
+
__marimo__/
|
|
216
|
+
|
|
217
|
+
# Streamlit
|
|
218
|
+
.streamlit/secrets.toml
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# cmus-web - PWA remote control for cmus
|
|
2
|
+
#
|
|
3
|
+
# Usage:
|
|
4
|
+
# docker build -t cmus-web .
|
|
5
|
+
# docker run \
|
|
6
|
+
# -v /run/user/1000/cmus-socket:/tmp/cmus-socket \
|
|
7
|
+
# -v ~/Music:/music \
|
|
8
|
+
# -e CMUS_WEB_PREFIX=/home/user/Music \
|
|
9
|
+
# -p 8000:8000 \
|
|
10
|
+
# cmus-web
|
|
11
|
+
#
|
|
12
|
+
# The socket volume mount is required - cmus-web communicates with cmus
|
|
13
|
+
# via the Unix domain socket at the mounted path.
|
|
14
|
+
#
|
|
15
|
+
# The music volume mount enables album art extraction.
|
|
16
|
+
# Use CMUS_WEB_PREFIX to tell cmus-web what host path to strip from
|
|
17
|
+
# cmus-remote file paths so they resolve correctly inside the container.
|
|
18
|
+
|
|
19
|
+
FROM python:3.13-slim AS base
|
|
20
|
+
|
|
21
|
+
WORKDIR /app
|
|
22
|
+
|
|
23
|
+
# Install system dependencies (cmus provides cmus-remote)
|
|
24
|
+
RUN apt-get update && \
|
|
25
|
+
apt-get install -y --no-install-recommends cmus && \
|
|
26
|
+
rm -rf /var/lib/apt/lists/*
|
|
27
|
+
|
|
28
|
+
# Copy uv binary from official image (pinned for reproducibility)
|
|
29
|
+
COPY --from=ghcr.io/astral-sh/uv:0.11.11 /uv /uvx /bin/
|
|
30
|
+
|
|
31
|
+
# Optimizations
|
|
32
|
+
ENV UV_COMPILE_BYTECODE=1
|
|
33
|
+
ENV UV_LINK_MODE=copy
|
|
34
|
+
ENV UV_NO_DEV=1
|
|
35
|
+
|
|
36
|
+
# Install dependencies in a separate layer (cached until pyproject.toml or uv.lock change)
|
|
37
|
+
RUN --mount=type=cache,target=/root/.cache/uv \
|
|
38
|
+
--mount=type=bind,source=uv.lock,target=uv.lock \
|
|
39
|
+
--mount=type=bind,source=pyproject.toml,target=pyproject.toml \
|
|
40
|
+
uv sync --locked --no-install-project
|
|
41
|
+
|
|
42
|
+
# Copy project source code
|
|
43
|
+
COPY pyproject.toml uv.lock ./
|
|
44
|
+
COPY backend/ ./backend/
|
|
45
|
+
COPY frontend/ ./frontend/
|
|
46
|
+
|
|
47
|
+
# Sync the project itself
|
|
48
|
+
RUN --mount=type=cache,target=/root/.cache/uv \
|
|
49
|
+
uv sync --locked
|
|
50
|
+
|
|
51
|
+
# Make virtual env binaries available on PATH
|
|
52
|
+
ENV PATH="/app/.venv/bin:$PATH"
|
|
53
|
+
|
|
54
|
+
# Create non-root user for security
|
|
55
|
+
RUN useradd --create-home appuser
|
|
56
|
+
USER appuser
|
|
57
|
+
|
|
58
|
+
# Expose default port
|
|
59
|
+
EXPOSE 8000
|
|
60
|
+
|
|
61
|
+
# cmus socket mount point - bind mount from host at runtime
|
|
62
|
+
VOLUME /tmp/cmus-socket
|
|
63
|
+
|
|
64
|
+
# Music directory mount point - bind mount from host at runtime
|
|
65
|
+
VOLUME /music
|
|
66
|
+
|
|
67
|
+
# Health check - verify server is responding
|
|
68
|
+
HEALTHCHECK --interval=30s --timeout=5s --start-period=5s --retries=3 \
|
|
69
|
+
CMD python -c "import urllib.request; urllib.request.urlopen('http://localhost:8000/')"
|
|
70
|
+
|
|
71
|
+
# Entry point - use the cmus-web CLI command
|
|
72
|
+
ENTRYPOINT ["cmus-web"]
|
|
73
|
+
CMD ["--host", "0.0.0.0", "--port", "8000", "--music-dir", "/music"]
|