This is the repository for Hangar, a plugin repository used for Paper, Velocity, and Waterfall plugins and similar software.
Hangar is loosely based off of Ore, created by the Sponge project, but rebuilt from the ground up using the Spring Boot Framework in Java for the backend and Nuxt (with UnoCSS) for the frontend. We would like to thank all Ore contributors. Without them, this project would never have been possible.
On top of our production instance at https://hangar.papermc.io/, we have a staging instance for testing purposes: https://hangar.papermc.dev/.
The project consists of 3 main parts
- Frontend (Vue.js under Nuxt with UnoCSS)
- Backend (Spring Boot)
- Database (PostgreSQL)
Fork the project and pull it in your IDE.
- Docker is required in order to run the PostgreSQL database and the dummy email server
- Java 21 or higher
- pnpm
- mvn
- git
- we strongly recommend using Intellij IDEA (Ultimate) as your IDE
To get the project running locally, you need to follow a few steps:
- Get the dummy database, storage and email server up and running.
Using Intellij: Run thedocker
run config (or click the green arrow in the gutter on this line)
Manually: Move to the docker foldercd docker
then rundocker-compose -f dev.yml up -d
(-d
as an optional parameter to run the containers in the background). - Start the backend.
Using Intellij Ultimate: Run thebackend
run config (or click the green arrow in the gutter on this line)
Using Intellij Community: Run thebackend-community
run config (or click the green arrow in the gutter on this line)
Manually: Move to the backend directory:cd backend
then runmvn spring-boot:run
. Alternatively you can start theHangarApplication
class via your IDE. - Install the frontend deps:
Using Intellij: Right-click the package.json file in the frontend directory and clickRun 'pnpm install'
(or click the button in theUpdate dependencies
toast)
Manually: Move to the frontend directory:cd frontend
then runpnpm install
. - Start the frontend.
Using Intellij: Run thefrontend
run config (or click the green arrow in the gutter on this line)
Manually: Move to the frontend directory:cd frontend
then runpnpm run dev
. - After that, open http://localhost:3333, and if all went well, Hangar should be up and running.
- The Spring Boot configuration file that is used by this environment is located at
backend/src/main/resources/application.yml
. - You can view the emails hangar sends on http://localhost:4436/
- On staging/prod Hangar uses object storage, if you want to test that you can install minio and change the storage type to
object
in theapplication.yml
Deployment happens via a helm chart in the /chart
folder. The Spring Boot configuration file used for deployment can be found at
chart/templates/secret-hangar-backend.yaml
(however it will be overridden with the actual values via helm).
Hangar uses Crowdin for translations. If you want to contribute to translations, create a Crowdin account at https://hangar.crowdin.com/hangar and simply add new translations or comment/vote on existing translations. You can learn more about navigating the Crowdin UI here: https://support.crowdin.com/online-editor/.
crowdin pull -b master -T <PAT>
You might want to set the env var TRANSLATION_MODE
to true in order to get warnings about untranslated strings.
Most of our current and future plans can be found in the Hangar Roadmap Project. Your best bet is joining the #development channel on the Hangar Discord to start discussing potential contributions and ideas. With Hangar being such a massive project, any contributions are welcome!
Updating the frontend dependencies can be done best by running npx npm-check -u
and going through the changelogs. Note that package.json might contain hints
to which dependencies are broken.
Hangar is licensed under the permissive MIT License.
A large part of the backend is based on Ore, also licensed under MIT:
Copyright (c) SpongePowered <https://www.spongepowered.org>
Copyright (c) contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.