Static files vs media files in Django
Static files are app assets you ship, while media files are user-uploaded content created after deployment.
- Static belongs to the codebase or build output
- Media is runtime content
- Storage and serving patterns often differ
Static files vs media files in Django