fix: Update script names in .gitignore and DEVELOPMENT.md for favicon generation and data update

This commit is contained in:
sHa
2025-06-17 16:15:46 +03:00
parent 8b2adef1af
commit ed7c0e1b96
2 changed files with 5 additions and 5 deletions

4
.gitignore vendored
View File

@@ -54,5 +54,5 @@ Temporary Items
.env.production .env.production
# Make favicon generation script executable # Make favicon generation script executable
chmod +x ./scripts/generateFavicons.js chmod +x ./scripts/generate-favicons.js
chmod +x ./scripts/scanLogos.js chmod +x ./scripts/update-data.js

View File

@@ -34,9 +34,9 @@ No local Node.js installation is required as all operations run inside Docker co
1. Add logo files (SVG or PNG preferred) to the `public/logos/` directory 1. Add logo files (SVG or PNG preferred) to the `public/logos/` directory
2. Scan the logos directory and update the data file: 2. Scan the logos directory and update the data file:
``` ```
make scan-logos make update-data
``` ```
(This runs `npm run scan-logos` inside the dev container) (This runs `npm run update-data` inside the dev container)
3. The application will automatically rebuild with the new logos 3. The application will automatically rebuild with the new logos
### Modifying the UI ### Modifying the UI
@@ -110,7 +110,7 @@ Run `make help` to see all available commands:
- `make restart` - Restart the application - `make restart` - Restart the application
- `make logs` - View the application logs - `make logs` - View the application logs
- `make run CMD=<cmd>` - Run a command in the container - `make run CMD=<cmd>` - Run a command in the container
- `make scan-logos` - Scan logos directory and update logos.json - `make update-data` - Scan logos directory and update logos.json
- `make clean` - Clean up build artifacts - `make clean` - Clean up build artifacts
- `make rebuild` - Completely rebuild from scratch - `make rebuild` - Completely rebuild from scratch