Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/firstdarkdev/unimaven
Virtual Maven Repository for CurseForge, Modrinth and GitHub Releases
https://github.com/firstdarkdev/unimaven
curseforge github maven modrinth
Last synced: about 1 month ago
JSON representation
Virtual Maven Repository for CurseForge, Modrinth and GitHub Releases
- Host: GitHub
- URL: https://github.com/firstdarkdev/unimaven
- Owner: firstdarkdev
- License: gpl-3.0
- Created: 2024-02-09T19:44:31.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-11-27T19:33:21.000Z (about 1 month ago)
- Last Synced: 2024-11-27T19:44:57.622Z (about 1 month ago)
- Topics: curseforge, github, maven, modrinth
- Language: Go
- Homepage: https://unimaven.cc
- Size: 104 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
## Unimaven
An experimental project that allows modders to add releases from CurseForge, GitHub, Modrinth and NightBloom into a gradle project as a dependency.
Simply put, a maven repository for mods.
### Why?
Just because. No specific reason.
***
### Self Hosting
Unimaven makes use of Docker and Docker compose. Make sure you have both installed before continuing.
To get started, first clone this repository:
```bash
git clone https://github.com/firstdarkdev/unimaven.git
cd unimaven
```Next, open up the `docker-compose.yml` file, and replace the following:
```yaml
CURSE_API_TOKEN: INSERT_YOUR_VALID_TOKEN_HERE
```
with your own valid curseforge api key. If you don't have one, you can apply [here](https://support.curseforge.com/en/support/solutions/articles/9000208346-about-the-curseforge-api-and-how-to-apply-for-a-key)Finally, unimaven uses port `8080` by default. You can change this to any port, in the docker compose file.
Example:
```yaml
ports:
- "8085:8080"
```
This means that unimaven will now be available at 127.0.0.1:8085To start unimaven, run the following command:
```bash
docker compose up -d --build
```***
Written in GO. Licensed under GPL-3.0. Join our [Discord](https://discord.firstdark.dev)