https://github.com/kopia/htmlui
HTML UI for Kopia
https://github.com/kopia/htmlui
Last synced: about 1 year ago
JSON representation
HTML UI for Kopia
- Host: GitHub
- URL: https://github.com/kopia/htmlui
- Owner: kopia
- License: apache-2.0
- Created: 2021-12-18T17:01:19.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-06-07T15:03:18.000Z (about 1 year ago)
- Last Synced: 2025-06-07T16:20:42.898Z (about 1 year ago)
- Language: JavaScript
- Size: 8.04 MB
- Stars: 27
- Watchers: 6
- Forks: 35
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kopia HTML Ui
This is the repository for the html UI for kopia. It is bundled as part of the [kopia UI releases (e.g. `KopiaUI-Setup-X.Y.Z.exe` or a `kopiaui` package)](https://kopia.io/docs/installation/#two-variants-of-kopia).
## Reporting issues
If you want to report a bug or have an idea for a feature request, please use the [issues list of the main kopia repository](https://github.com/kopia/kopia/issues?q=is%3Aissue+is%3Aopen+gui).
## Development
The kopia UI uses [React](https://react.dev/). It connects to a kopia server running locally.
If you want to run a local version of the GUI (e.g. for development), you need to start a kopia server first.
As the UI version might be ahead of the latest release and might depend on changes in the server, it's recommended
that you also clone the [kopia server repository](https://github.com/kopia/kopia#readme) and start the server from there (GO required).
You can use this script like this one. Here it's assumed that you cloned the server repo next to the htmlui.
```bash
#! /bin/bash
(
cd ../kopia
# start kopia server with default repo:
#go run . server start --insecure --without-password --disable-csrf-token-checks --log-level=debug
# for development you might want to use another repository for testing only, not your normal one, so you could use, e.g.
go run . server start --insecure --without-password --disable-csrf-token-checks --log-level=debug --config-file=$HOME/.config/kopia/disabled/repository-dev.config
)
```