Go to file
phzhik 24ad080a61 Backend
+ Added requirements.txt
* Moved api keys to env
2024-10-09 17:35:59 +04:00
backend Backend 2024-10-09 17:35:59 +04:00
public * Removed Nuxt from project 2024-06-14 18:58:44 +04:00
src * Removed Nuxt from project 2024-06-14 18:58:44 +04:00
.editorconfig Initial commit 2023-11-11 10:34:31 +04:00
.gitignore * Removed Nuxt from project 2024-06-14 18:58:44 +04:00
index.html * Removed Nuxt from project 2024-06-14 18:58:44 +04:00
jsconfig.json * Removed Nuxt from project 2024-06-14 18:58:44 +04:00
package.json * Removed Nuxt from project 2024-06-14 18:58:44 +04:00
postcss.config.js * Removed Nuxt from project 2024-06-14 18:58:44 +04:00
README.md Initial commit 2023-11-11 10:34:31 +04:00
tailwind.config.js * Removed Nuxt from project 2024-06-14 18:58:44 +04:00
vite.config.js * Removed Nuxt from project 2024-06-14 18:58:44 +04:00

Useful commands

Create thumbnail (400px side max) for all jpg/JPG images in folder, move it to thumbs folder

for ext in jpg JPG; do mogrify -format $ext -path thumbs -auto-orient -thumbnail '400' *.$ext; done

Get thumbnail size for every file in folder

identify -ping -format 'image: "%[basename].%[extension]", thumbSize: {w: %[width], h: %[height]}},\n' *