Web UI for operators on the hooya network. Provides a web frontend for browsing, uploading, and managing media files stored in hooya instances. This is where you log in and participate in the network.
This UI can also used for non-public (ie local) instances.
Longer discussion on what boorus are and on the HooYa vision is at wesl.ee/HooYa.
This repo has nix flakes to manage dependencies. You don't need to use it if you have some other way of managing npm and friends.
git clone git@github.com:hooya-network/hooya-web-ui.git
cd hooya-web-ui
# if you are using nix
nix develop
npm install
hooya-web-ui knows how to connect to hooya-web-proxy by way of an environment variable.
export HOOYA_WEB_PROXY_URL=http://localhost:8532
Ensure that hooya-web-proxy is listening on this address first, and will allow CORS from this web-ui, like so:
./target/debug/hooya-web-proxy \
--endpoint 192.168.17.226:8531 \ # remote address of hooyad
--proxy-endpoint 192.168.17.226:8532 \ # listen address of hooya-web-proxy
--cors-origins http://192.168.17.226:3000 # how you will access web-ui
If you fail to set CORS you may see CORS errors in the browser.
Start the development server:
npm run dev
The application will be available at localhost:3000
Build the application:
npm run build
npm run start
Or serve the static files with your preferred web server:
npm run build
# Serve the contents of the 'out' directory
Use the included Dockerfile:
docker build -t hooya-web-ui .
docker run -p 3000:3000 -e HOOYA_WEB_PROXY_URL=http://192.168.17.226:8532 hooya-web-ui
A systemd service file is available in the main hooya repository at
/deploy/systemd/hooya-web-ui.service
.
See the systemd deployment guide for complete setup instructions.
Kubernetes manifests are available in the main hooya repository at
/deploy/k8s/
.
See the Kubernetes deployment guide for complete setup instructions.
Docker Compose configuration is available in the main hooya repository at
/deploy/docker-compose/
.
See the Docker Compose deployment guide for complete setup instructions.
The web UI requires:
- hooya-web-proxy running on port 8532 (or configured URL)
- hooyad running and accessible to the web proxy
See the main hooya repository for installation and setup instructions.
MIT License (available in the source tree as /LICENSE)