{"id":13559116,"url":"https://github.com/tgambet/musicalypse","last_synced_at":"2025-04-03T14:31:20.711Z","repository":{"id":70794058,"uuid":"124293564","full_name":"tgambet/musicalypse","owner":"tgambet","description":"A modern audio player built with Web technologies.","archived":false,"fork":false,"pushed_at":"2019-06-16T11:45:48.000Z","size":2001,"stargazers_count":20,"open_issues_count":6,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-11-04T10:43:51.328Z","etag":null,"topics":["akka-http","angular","electron","music","music-player","ngrx","streaming-audio"],"latest_commit_sha":null,"homepage":"https://musicalypse.creasource.net","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tgambet.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2018-03-07T20:57:16.000Z","updated_at":"2024-09-11T06:05:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"32c0e89d-2ab9-4ef5-a34d-51bc78e61448","html_url":"https://github.com/tgambet/musicalypse","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tgambet%2Fmusicalypse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tgambet%2Fmusicalypse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tgambet%2Fmusicalypse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tgambet%2Fmusicalypse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tgambet","download_url":"https://codeload.github.com/tgambet/musicalypse/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247018431,"owners_count":20870003,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["akka-http","angular","electron","music","music-player","ngrx","streaming-audio"],"created_at":"2024-08-01T12:05:21.456Z","updated_at":"2025-04-03T14:31:20.268Z","avatar_url":"https://github.com/tgambet.png","language":"TypeScript","funding_links":[],"categories":["TypeScript","electron"],"sub_categories":[],"readme":"# Musicalypse\n\nMusicalypse is a modern audio player built with web technologies.\nIt is available as an online or native version on main desktop platforms\nand provides a backend streaming server.\n\nDeveloped in [Typescript](https://www.typescriptlang.org/) and [Scala](https://www.scala-lang.org/) using [Angular](https://angular.io/) and [akka](https://akka.io/).\n\nProvided as a seemingly native application using [electron](https://electronjs.org/).\n\nFind out more on [the official website](https://musicalypse.creasource.net).\n\n![GitHub All Releases](https://img.shields.io/github/downloads/tgambet/musicalypse/total.svg?style=flat-square)\n\n## Features\n\n* Supports mp3, ogg, flac and wav\n* Streaming server for your local network or beyond\n* Accessible by computer, tablets, or phones\n* Lyrics\n* Playlists\n* Favorites and recent tracks\n* Multiple artists/albums selection\n* Themes\n\n[![Musicalypse_screenshot](https://musicalypse.creasource.net/img/musicalypse-ipad-4.png)](https://musicalypse.creasource.net)\n\n## Build\n\n### Dependencies\n\nTo build both the frontend and backend of Musicalypse you will need:\n\n* Java JDK8\n* [sbt (scala build tool)](https://www.scala-lang.org/download/)\n* [Node \u0026 npm](https://nodejs.org/en/download/)\n\n### Run\n\nTo run Musicalypse from source use the following commands:\n\n#### For the server\n\nRun `npm run web:run` and connect to [http://localhost:8080](http://localhost:8080).\n\nYou can then serve Musicalypse behind a regular Web server (e.g. apache or nginx) and add authentication and SSL (Help wanted to document how to do that).\n\n#### For the desktop\n\nRun `npm run electron:run` and Musicalypse will launch inside electron.\n\n### Develop\n\n#### Frontend development\n\nRun `npm run web:serve` and connect to [http://localhost:4200](http://localhost:4200).\n\nYou get hot reloading of the application on file modification.\n\nIf you work on electron-specific frontend features then run `npm run electron:serve`.\n\n#### Backend development\n\nIn two consoles run:\n\n* `sbt run`\n* `npm run ng:serve`\n\nAnd connect to [http://localhost:4200](http://localhost:4200).\n\n*Note:* You have to manually close the server by pressing `Enter` and restart it whenever you change a source file (help wanted to get hot reloading with akka-http).\n\n#### Electron development\n\nTo develop the electron integration run `npm run electron:build` once to build dependencies and then run `npm run electron:run:dev` every time you change an electron source file (in the `electron/` folder).\n\n**TODO:** improve workflow if possible.\n\n### Stage\n\n#### For the server\n\n* Expanded: `npm run web:stage`\n* Zip: `npm run web:stage:zip`\n* Tar: `npm run web:stage:tar` (linux only)\n\n#### For the desktop\n\nMusicalypse is packaged with a JRE (Java Runtime Environment) so you need a copy of your JRE in your `target` folder.\n\nYou can get it easily by running `npm run electron:jre` and entering the path to your JRE.\n\n##### Linux\n\n`npm run electron:stage:linux`\n\n*Note:* You should run this command on Linux only.\n\n##### Windows\n\n`npm run electron:stage:windows`\n\n*Note:* You should run this command on Windows only.\n\n## Contributing\n\nPlease feel free to open tickets to report bugs, suggest new features, or request help.\n\nIf you don't have a github account you can do the same by sending an email to contact@creasource.net.\n\nEven if you are not a developer don't hesitate to let us know what you like and what you dislike in Musicalypse, and how you think we can improve it.\n\n## Privacy Policy\n\nMusicalypse does not collect any personal information.\n\nFor more information, please see [PRIVACY_POLICY](https://github.com/tgambet/musicalypse/blob/master/PRIVACY_POLICY.md).\n\n## License\n\nLicensed under the MIT License.\n\nCopyright © Thomas Gambet\n\nFor more information, please see [LICENSE](https://github.com/tgambet/musicalypse/blob/master/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftgambet%2Fmusicalypse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftgambet%2Fmusicalypse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftgambet%2Fmusicalypse/lists"}