Miguel Astor 078eb25b66 Updated CLAUDE.md to reflect performance optimizations.
Updated documentation to reflect recent changes:
- Changed image detection from MIME-type to extension-based
- Added Performance Optimizations section explaining the change
- Updated Code Patterns to use is_image_file() instead of filetype
- Marked filetype as legacy dependency (no longer actively used)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-27 01:48:13 -04:00
2023-07-30 20:31:34 -04:00
2023-07-29 18:46:58 -04:00
2023-07-30 19:04:15 -04:00
2023-07-30 19:04:15 -04:00
2023-08-23 17:45:39 -04:00
2023-07-30 18:55:12 -04:00

Nibasa Viewer

A basic pure HTML+CSS gallery viewer in the vein of PiGallery 2 but meant to be compatible with somewhat old browsers.

User authentication.

To login a user should be manually created by running the following commands in the Django shell, substituting the user's name, email and password as needed:

from django.contrib.auth.models import User
user = User.objects.create_user('<USERNAME>', '<EMAIL>', '<PASSWORD>')
user.save()
Description
A simple image gallery server written in Django as an old-computer-compatible alternative to PiGallery 2.
Readme 203 KiB
Languages
Python 60.3%
HTML 32.9%
CSS 6.8%