Ausklingen is a web radio application built with Phoenix LiveView. It streams music from a backend library of FLAC files, providing a seamless radio-like experience for users.
- Streams tracks from a curated playlist (not direct file browsing)
- FLAC files are used as a backend source and are not user-facing
- Randomized or sequential playback
- Modern Phoenix LiveView interface
mix setupmix phx.serveror inside IEx:
iex -S mix phx.serverVisit localhost:4000 in your browser.
- Place your FLAC files in
priv/static/uploads/flac/. - Only admins (or backend processes) should trigger a scan/import of new FLAC files.
- Users cannot browse or select from the FLAC folder directly; tracks are managed via the database.
- The app is ready for Tidewave MCP integration for advanced code navigation and AI features.
- See
.cursor/mcp.jsonfor configuration.
Ready to run in production? Please check our deployment guides.
- Do not commit FLAC files to version control. The
.gitignoreshould include:*.flac priv/static/uploads/flac/ - The FLAC folder is for backend ingestion only.