mirror of
https://github.com/kjanat/livegraphs-django.git
synced 2026-01-16 07:52:11 +01:00
Refactor HTML templates for improved readability and consistency
- Updated search_results_table.html to enhance formatting and maintain consistent indentation. - Refined search_results.html layout for better structure and clarity. - Improved upload.html for better organization and readability of the upload form and data source table. - Removed unnecessary lines in package.json and streamlined devDependencies section.
This commit is contained in:
11
Makefile
11
Makefile
@ -1,4 +1,4 @@
|
||||
.PHONY: venv install install-dev lint test format clean run migrate makemigrations superuser setup-node format-js
|
||||
.PHONY: venv install install-dev lint test format clean run migrate makemigrations superuser setup-node
|
||||
|
||||
# Create a virtual environment
|
||||
venv:
|
||||
@ -25,13 +25,9 @@ format:
|
||||
uv run -m ruff format dashboard_project
|
||||
uv run -m black dashboard_project
|
||||
|
||||
# Format JavaScript/CSS/HTML files with Prettier
|
||||
format-js:
|
||||
npx run format
|
||||
|
||||
# Setup Node.js dependencies
|
||||
setup-node:
|
||||
npm install
|
||||
npm install --include=dev
|
||||
|
||||
# Clean Python cache files
|
||||
clean:
|
||||
@ -45,6 +41,9 @@ clean:
|
||||
find . -type d -name ".coverage" -exec rm -rf {} +
|
||||
find . -type d -name "htmlcov" -exec rm -rf {} +
|
||||
find . -type d -name ".ruff_cache" -exec rm -rf {} +
|
||||
find . -type d -name ".mypy_cache" -exec rm -rf {} +
|
||||
find . -type d -name ".tox" -exec rm -rf {} +
|
||||
find . -type d -name "node_modules" -exec rm -rf {} +
|
||||
rm -rf build/
|
||||
rm -rf dist/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user