Renamed to poly-tool
This commit is contained in:
parent
5116247ae8
commit
ab7d32d46e
@ -15,9 +15,9 @@ RUN pip3 install ${RELEASE} --no-cache-dir
|
||||
|
||||
WORKDIR ${TARGET}
|
||||
|
||||
RUN SECRET_KEY=_ ${TARGET}/bin/manage collectstatic --noinput
|
||||
RUN SECRET_KEY=_ poly-tool collectstatic --noinput
|
||||
|
||||
VOLUME ["/var/polyphonic"]
|
||||
|
||||
ENTRYPOINT ["manage"]
|
||||
ENTRYPOINT ["poly-tool"]
|
||||
CMD ["runserver", "0.0.0.0:8000", "--insecure"]
|
||||
|
||||
@ -3,7 +3,7 @@ from whoosh.analysis import StemmingAnalyzer, CharsetFilter
|
||||
from whoosh.support.charset import accent_map
|
||||
from whoosh.fields import Schema, TEXT, KEYWORD, NUMERIC
|
||||
from whoosh.qparser import QueryParser
|
||||
from whoosh.query import Term, NullQuery, Prefix, FuzzyTerm
|
||||
from whoosh.query import Term, NullQuery, Prefix
|
||||
|
||||
|
||||
from typing import Any
|
||||
|
||||
@ -2,27 +2,25 @@
|
||||
name = "polyphonic"
|
||||
version = "0.8.3"
|
||||
description = "Polyphonic Ensemble Manager"
|
||||
authors = [
|
||||
{name = "Tris Forster",email = "tris@tfconsulting.com.au"}
|
||||
]
|
||||
authors = [{ name = "Tris Forster", email = "tris@tfconsulting.com.au" }]
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.12"
|
||||
dependencies = [
|
||||
"django (==6.0.4)",
|
||||
"django-crispy-forms",
|
||||
"django-markdown2",
|
||||
"django-rest-framework",
|
||||
"crispy-bulma (>=0.12.0,<0.13.0)",
|
||||
"django-byostorage @ git+https://gitea.tfconsulting.com.au/tris/django-byostorage.git@9903bb00888f20dfd2d39754e5ee22eeb5f36298",
|
||||
"requests (>=2.32.5,<3.0.0)",
|
||||
"django-storages (>=1.14.6,<2.0.0)",
|
||||
"boto3 (>=1.40.20,<2.0.0)",
|
||||
"whoosh (>=2.7.4,<3.0.0)",
|
||||
"tzdata (>=2026.2,<2027.0)"
|
||||
"django (==6.0.4)",
|
||||
"django-crispy-forms",
|
||||
"django-markdown2",
|
||||
"django-rest-framework",
|
||||
"crispy-bulma (>=0.12.0,<0.13.0)",
|
||||
"django-byostorage @ git+https://gitea.tfconsulting.com.au/tris/django-byostorage.git@9903bb00888f20dfd2d39754e5ee22eeb5f36298",
|
||||
"requests (>=2.32.5,<3.0.0)",
|
||||
"django-storages (>=1.14.6,<2.0.0)",
|
||||
"boto3 (>=1.40.20,<2.0.0)",
|
||||
"whoosh (>=2.7.4,<3.0.0)",
|
||||
"tzdata (>=2026.2,<2027.0)",
|
||||
]
|
||||
|
||||
[tool.poetry]
|
||||
packages = [{include = "*", from="app"}]
|
||||
packages = [{ include = "*", from = "app" }]
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
django-debug-toolbar = "5.2"
|
||||
@ -30,7 +28,7 @@ ruff = "^0.15.12"
|
||||
coverage = "^7.14.0"
|
||||
|
||||
[tool.poetry.scripts]
|
||||
manage = "manage:main"
|
||||
poly-tool = "manage:main"
|
||||
|
||||
[tool.ruff]
|
||||
extend-exclude = ["**/migrations/"]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user