{"id":26954753,"url":"https://github.com/jwizard-bot/jwizard-management","last_synced_at":"2025-04-03T02:18:59.015Z","repository":{"id":285648543,"uuid":"958842594","full_name":"jwizard-bot/jwizard-management","owner":"jwizard-bot","description":"Web interface to simplify configuration, updates and management of JWizard infrastructure.","archived":false,"fork":false,"pushed_at":"2025-04-01T23:24:46.000Z","size":194,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-01T23:30:28.473Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://jwizard.pl","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jwizard-bot.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["jwizard-bot","milosz08"]}},"created_at":"2025-04-01T21:16:20.000Z","updated_at":"2025-04-01T23:24:49.000Z","dependencies_parsed_at":"2025-04-01T23:30:34.506Z","dependency_job_id":"e1fea445-4a54-4950-aeee-a7ea40c50ca5","html_url":"https://github.com/jwizard-bot/jwizard-management","commit_stats":null,"previous_names":["jwizard-bot/jwizard-management"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwizard-bot%2Fjwizard-management","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwizard-bot%2Fjwizard-management/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwizard-bot%2Fjwizard-management/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwizard-bot%2Fjwizard-management/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jwizard-bot","download_url":"https://codeload.github.com/jwizard-bot/jwizard-management/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246922214,"owners_count":20855345,"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":"2025-04-03T02:18:58.492Z","updated_at":"2025-04-03T02:18:58.995Z","avatar_url":"https://github.com/jwizard-bot.png","language":"TypeScript","funding_links":["https://github.com/sponsors/jwizard-bot","https://github.com/sponsors/milosz08"],"categories":[],"sub_categories":[],"readme":"![](.github/banner.png)\n\n[[About project](https://jwizard.pl/about)]\n| [[Docker image](https://hub.docker.com/r/milosz08/jwizard-management)]\n| [[Docker installation](docker/README.md)]\n\nJWizard is an open-source Discord music bot handling audio content from various multimedia sources\nwith innovative web player. This repository contains web interface to simplify configuration,\nupdates and management of JWizard infrastructure.\n\n## Table of content\n\n* [Project modules](#project-modules)\n* [Clone and install](#clone-and-install)\n* [Contributing](#contributing)\n* [License](#license)\n\n## Project modules\n\n| Name       | Description                        |\n|------------|------------------------------------|\n| jwm-client | React application (SPA).           |\n| jwm-server | Javalin (with embed Jetty server). |\n\n## Clone and install\n\n1. Make sure you have at least JDK 17 and Kotlin 2.0.\n2. Clone **JWizard Lib** and **JWizard Tools** from organization repository via:\n\n```bash\n$ git clone https://github.com/jwizard-bot/jwizard-lib\n$ git clone https://github.com/jwizard-bot/jwizard-tools\n```\n\n3. Configure and run all necessary containers defined in `README.md` file in this repository. You\n   must have up these containers:\n\n| Name             | Port(s)    | Description                           |\n|------------------|------------|---------------------------------------|\n| jwizard-vault    | 8761       | Secret keys storage service.          |\n| jwizard-mysql-db | 8762       | MySQL database.                       |\n| jwizard-rabbitmq | 8771, 8772 | RabbitMQ server and management panel. |\n\n\u003e [!IMPORTANT]\n\u003e Don't forget to perform database migration after start DB (see\n\u003e [jwizard-lib](https://github.com/jwizard-bot/jwizard-lib) repository).\n\n4. Build library and package to Maven Local artifacts' storage:\n\n* for UNIX based systems:\n\n```bash\n$ ./gradlew clean publishToMavenLocal\n```\n\n* for Windows systems:\n\n```bash\n.\\gradlew clean publishToMavenLocal\n```\n\n5. Clone this repository via:\n\n```bash\n$ git clone https://github.com/jwizard-bot/jwizard-management\n```\n\n6. Create `.env` file in root of the project path (based on `example.env`) and insert Vault token:\n\n```properties\nJWIZARD_VAULT_TOKEN=\u003cvault token\u003e\n```\n\nwhere `\u003cvalue token\u003e` property is the Vault token stored in configured `.env` file\nin [jwizard-lib](https://github.com/jwizard-bot/jwizard-lib) repository.\n\n7. That's it. Now you can run server via Intellij IDEA. Make sure, you have set JVM parameters (for\n   server app):\n\n```\n-Druntime.profiles=dev -Denv.enabled=true -Xms128m -Xmx128m\n```\n\nwhere `Xmx` and `Xms` parameters are optional and can be modified.\n\n\u003e [!NOTE]\n\u003e For servers running on HotSpot JVM, Oracle recommended same Xms and Xmx parameter, ex. `-Xms128m`\n\u003e and `-Xmx128m`. More information you will find\n\u003e [here](https://docs.oracle.com/cd/E74363_01/ohi_vbp_-_installation_guide--20160224-094432-html-chunked/s66.html).\n\n8. To run client development server, type:\n\n```bash\n$ cd jwm-client\n$ yarn run dev\n```\n\nClient development server should be available at [8773](http://localhost:8773)\n\n## Contributing\n\nWe welcome contributions from the community! Please read our [CONTRIBUTING](./CONTRIBUTING.md) file\nfor guidelines on how to get involved.\n\n## License\n\nThis project is licensed under the AGPL-3.0 License - see the LICENSE file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjwizard-bot%2Fjwizard-management","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjwizard-bot%2Fjwizard-management","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjwizard-bot%2Fjwizard-management/lists"}