{"id":19954202,"url":"https://github.com/code100x/muzer","last_synced_at":"2025-05-16T03:04:10.864Z","repository":{"id":255295021,"uuid":"849121178","full_name":"code100x/muzer","owner":"code100x","description":null,"archived":false,"fork":false,"pushed_at":"2024-10-19T05:35:52.000Z","size":1987,"stargazers_count":213,"open_issues_count":14,"forks_count":163,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-04-08T13:08:51.224Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://muzer.100xdevs.com","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/code100x.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"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}},"created_at":"2024-08-29T02:39:51.000Z","updated_at":"2025-04-07T09:51:20.000Z","dependencies_parsed_at":"2024-12-09T03:05:00.212Z","dependency_job_id":"ba128ece-ce51-4e5c-8170-b144c55da71a","html_url":"https://github.com/code100x/muzer","commit_stats":{"total_commits":55,"total_committers":21,"mean_commits":2.619047619047619,"dds":0.7454545454545455,"last_synced_commit":"650ad9098446b0ce473b0741bb9e3b90a5685d92"},"previous_names":["code100x/muzer"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code100x%2Fmuzer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code100x%2Fmuzer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code100x%2Fmuzer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code100x%2Fmuzer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/code100x","download_url":"https://codeload.github.com/code100x/muzer/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254459088,"owners_count":22074605,"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":[],"created_at":"2024-11-13T01:19:13.234Z","updated_at":"2025-05-16T03:04:05.844Z","avatar_url":"https://github.com/code100x.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align='center'\u003eMuzer - 100xDevs\u003c/h1\u003e\n\n## Table of Contents\n\n- [Table of Contents](#table-of-contents)\n- [Installation](#installation)\n  - [With Docker](#with-docker)\n  - [Without Docker](#without-docker)\n- [Usage](#usage)\n- [Contributing](#contributing)\n- [Contributors](#contributors)\n\n## Installation\n\n### With Docker\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/code100x/muzer.git\n   ```\n\n2. Navigate to the project directory:\n   ```bash\n   cd muzer\n   ```\n\n3. Create a `.env` file based on the `.env.example` file and configure everything in both the `next-app` and `ws` folders.\n\n4. Run the following command to start the application:\n   ```bash\n   docker compose up -d   \n   ```\n\n### Without Docker\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/code100x/muzer.git\n   ```\n\n2. Navigate to the project directory:\n   ```bash\n   cd muzer\n   ```\n\n3. Now Install the dependencies:\n   ```bash\n   cd next-app\n   pnpm install\n   cd ..\n   cd ws \n   pnpm install\n   ```\n4. Create a `.env` file based on the `.env.example` file and configure everything in both the `next-app` and `ws` folders.\n\n5. For postgres, you need to run the following command:\n   ```bash\n   docker run -d \\\n   --name muzer-db \\\n   -e POSTGRES_USER=myuser \\\n   -e POSTGRES_PASSWORD=mypassword \\\n   -e POSTGRES_DB=mydatabase \\\n   -p 5432:5432 \\\n   postgres\n   ```\n\n6. For redis, you need to run the following command:\n   ```bash\n   docker run -d \\\n   --name muzer-redis \\\n   -e REDIS_USERNAME=admin \\\n   -e REDIS_PASSWORD=root \\\n   -e REDIS_PORT=6379 \\\n   -e REDIS_HOST=\"127.0.0.1\" \\\n   -e REDIS_BROWSER_STACK_PORT=8001 \\\n   redis/redis-stack:latest \n   ```\n\n7. Now do the following:\n   ```bash\n   cd next-app\n   pnpm postinstall\n   cd ..\n   cd ws \n   pnpm postinstall\n   ```\n\n8. Run the following command to start the application:\n   ```bash\n    cd next-app\n    pnpm dev\n    cd ..\n    cd ws\n    pnpm dev\n   ```\n\n9. To access the prisma studio, run the following command:\n   ```bash\n   cd next-app\n   pnpm run prisma:studio\n   ```\n\n## Usage \n\n1. Access the application in your browser at http://localhost:3000\n2. Access the redis stack at http://localhost:8001/redis-stack/browser\n3. Access the prisma studio at http://localhost:5555\n\n## Contributing\n\nWe welcome contributions from the community! To contribute to Muzer, follow these steps:\n\n1. Fork the repository.\n\n2. Create a new branch (`git checkout -b feature/fooBar`).\n\n3. Make your changes and commit them (`git commit -am 'Add some fooBar'`).\n\n4. Push to the branch (`git push origin -u feature/fooBar`).\n\n5. Create a new Pull Request.\n\nFor major changes, please open an issue first to discuss what you would like to change.\n\nRead our [contribution guidelines](./CONTRIBUTING.md) for more details.\n\n## Contributors\n\n\u003ca href=\"https://github.com/code100x/muzer/graphs/contributors\"\u003e\n  \u003cimg src=\"https://contrib.rocks/image?repo=code100x/muzer\" /\u003e\n\u003c/a\u003e\n\nIf you continue to face issues, please open a GitHub issue with details about the problem you're experiencing.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcode100x%2Fmuzer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcode100x%2Fmuzer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcode100x%2Fmuzer/lists"}