Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "mixxx",
"image":"mcr.microsoft.com/devcontainers/python",
"postCreateCommand": "git config --global --add safe.directory ${containerWorkspaceFolder} && pip3 install pre-commit && pip3 install -r requirements.txt && pre-commit install --overwrite --install-hooks",
"customizations": {
"vscode": {
"extensions": [
"streetsidesoftware.code-spell-checker",
"GitHub.vscode-pull-request-github",
"eamodio.gitlens"
]
}
},
"forwardPorts": [
8000
]
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@
build
source/locale/pot/.doctrees
/source/locale/en_US
.venv
sphinx-mixxx/sphinx_mixxx.egg-info/*
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ help:
clean:
rm -rf $(BUILDDIR)/*

watch:
sphinx-autobuild source build/html

html:
$(SPHINXBUILD) source $(BUILDDIR)/html -b html $(ALLSPHINXOPTS)
@echo
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ transifex-client
sphinxcontrib-svg2pdfconverter
sphinx-rtd-theme
sphinx-multiversion
sphinx-autobuild==2024.10.3
./sphinx-mixxx
Loading