diff --git a/.gitignore b/.gitignore index 3c95cd1..208414c 100644 --- a/.gitignore +++ b/.gitignore @@ -54,5 +54,5 @@ Temporary Items .env.production # Make favicon generation script executable -chmod +x ./scripts/generateFavicons.js -chmod +x ./scripts/scanLogos.js +chmod +x ./scripts/generate-favicons.js +chmod +x ./scripts/update-data.js diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 918730e..c7d1d8b 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -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 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 ### Modifying the UI @@ -110,7 +110,7 @@ Run `make help` to see all available commands: - `make restart` - Restart the application - `make logs` - View the application logs - `make run 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 rebuild` - Completely rebuild from scratch