// the find
buckyroberts/Viberr
Viberr is an application that let's you upload, store, and play all of your music from the cloud.
A Django tutorial project for building a personal cloud music player — upload albums, store songs, play them back. This is a learning resource from Bucky Roberts (thenewboston), not production software. The target audience is people working through Django fundamentals.
Clean, minimal Django project structure that's easy to follow for beginners. Covers a useful slice of Django: models, forms, migrations, file uploads, user auth, and basic search in one coherent example. The SQLite default means zero setup friction for someone just trying to run it locally.
The committed db.sqlite3 and actual media files (album art, WAV files) in the repo is a beginner mistake that inflates clone size and leaks demo data into version control. No cloud storage backend — files go into a local media/ folder, so 'cloud music player' is misleading unless you self-host on a server you control. Last touched in 2022 and targets an older Django version with no pinned dependencies, so expect breakage on a fresh install. No streaming — it's upload/download, not actual audio streaming.