{"id":17029715,"url":"https://github.com/LumiFae/muusik-web","last_synced_at":"2026-04-15T08:30:18.191Z","repository":{"id":217000931,"uuid":"675101429","full_name":"LumiFae/muusik-web","owner":"LumiFae","description":"The frontend of muusik.app, built using SvelteKit and TailwindCSS","archived":false,"fork":false,"pushed_at":"2024-08-30T17:27:17.000Z","size":2158,"stargazers_count":3,"open_issues_count":3,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-17T06:47:00.021Z","etag":null,"topics":["bot","discord","music","music-bot","svelte","sveltekit","tailwindcss","website"],"latest_commit_sha":null,"homepage":"https://muusik.app","language":"Svelte","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/LumiFae.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"jayxtq","ko_fi":"jxtq"}},"created_at":"2023-08-05T19:27:28.000Z","updated_at":"2024-11-13T22:13:41.000Z","dependencies_parsed_at":"2024-01-14T04:00:54.856Z","dependency_job_id":"141c3374-cd63-4fe7-8717-e7fe8ce26dac","html_url":"https://github.com/LumiFae/muusik-web","commit_stats":{"total_commits":121,"total_committers":4,"mean_commits":30.25,"dds":0.2975206611570248,"last_synced_commit":"f2ed708c298751bae6c8925445a9fb64119608c0"},"previous_names":["jayxtq/muusik-web","lumifae/muusik-web"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LumiFae%2Fmuusik-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LumiFae%2Fmuusik-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LumiFae%2Fmuusik-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LumiFae%2Fmuusik-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LumiFae","download_url":"https://codeload.github.com/LumiFae/muusik-web/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239933078,"owners_count":19720728,"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":["bot","discord","music","music-bot","svelte","sveltekit","tailwindcss","website"],"created_at":"2024-10-14T08:01:35.751Z","updated_at":"2026-04-15T08:30:16.127Z","avatar_url":"https://github.com/LumiFae.png","language":"Svelte","funding_links":["https://github.com/sponsors/jayxtq","https://ko-fi.com/jxtq"],"categories":[],"sub_categories":[],"readme":"# muusik.app\n\nThis is the frontend for the muusik.app project. This will allow you to connect with the API for Muusik and manage your music with your friends.\n\n## What is this built on?\n\nThis website is built on SvelteKit\n\n## Contributing\n\nIf you would like to contribute to this project, please read further here on how to do so.\n\n### Getting started\n\nTo get started with contributing to this project, you will need to have Node.JS installed on your machine. Install it via the [Node.JS Website](https://nodejs.org).\n\nOnce you have Node installed, you will need to fork the repository and clone it to your machine, you can use whatever to clone it. I recommend GitHub Desktop for Windows/MacOS users.\n\nOnce you have cloned the repository, you will need to install the dependencies. You can do so by running the following command in your terminal:\n\n```bash\nnpm install\n```\n\nThis will then install all the dependencies/libraries needed for this project.\n\n### Running the project\n\n\u003e **Warning:** You will need to rename `.env.example` to `.env` and fill in the values for the environment variables before doing this. You will also need a supabase project with Discord OAuth enabled, learn how to set that up [here](https://supabase.com/docs/guides/auth/social-login/auth-discord).\n\nTo run the project, you will need to run the following command in your terminal:\n\n```bash\nnpm run dev\n```\n\nThis will then run the project and you will be able to access it on your localhost, for instance `http://localhost:5713` (this is default for sveltekit).\n\n### Database\n\nAs this project uses supabase, you will need to make sure you have added the values for your supabase project into .env then we need to establish the creation of databases. Also if you haven't already, please configure discord oauth which is explained above. For the databases, I have already constructed the SQL queries you need to make inside of supabase to create the tables and the security policies these need to have.\n\n```sql\ncreate table playlist (\n    id uuid primary key default gen_random_uuid(),\n    created_at timestamptz default now(),\n    name text,\n    songs jsonb[],\n    owner uuid default auth.uid()\n);\n\nalter table playlist enable row level security;\n\nCREATE POLICY \"Enable all for users based on owner id\" \n    ON playlist\n    USING (auth.uid() = owner);\n\nCREATE POLICY \"Enable read access for all users\" \n    ON playlist\n    FOR SELECT \n    USING (true);\n\ncreate table guilds (\n    id bigint primary key,\n    created_at timestamptz default now(),\n    settings jsonb\n)\n\nalter table guilds enable row level security;\n\nCREATE POLICY \"Enable read access for all users\" ON \"public\".\"guilds\"\nAS PERMISSIVE FOR SELECT\nTO authenticated\nUSING (true)\n```\n\n### Making changes\n\nOnce you have made your changes, commit to your fork and then you can go and make a pull request back to the main repository. Once you have done this, I will review your changes and then merge them into the main repository if the changes are good. For more information about making pull requests, check on [GitHub's Docs](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests).\n\n### Hosting\n\nTypically, you won't need to host this part of the project yourself, due to the nature of being able to interchange the API being used. If you still wish to carry on hosting, I would recommend reading the SvelteKit docs to understand how to host the project on your relevent platform, they explain this quite well over there.\n\n## Issues\n\nIf you find any issues with the project, please create an issue on the repository and I will look into it as soon as possible. For more information about creating issues, check on [GitHub's Docs](https://docs.github.com/en/issues/tracking-your-work-with-issues/creating-issues).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FLumiFae%2Fmuusik-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FLumiFae%2Fmuusik-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FLumiFae%2Fmuusik-web/lists"}