https://github.com/streamdp/compactor-fe
Just a little frontend for the compactor backend.
https://github.com/streamdp/compactor-fe
client-side css docker html5 htmx httpd nunjucks
Last synced: 4 days ago
JSON representation
Just a little frontend for the compactor backend.
- Host: GitHub
- URL: https://github.com/streamdp/compactor-fe
- Owner: streamdp
- License: apache-2.0
- Created: 2025-02-20T11:39:46.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-04-27T09:57:05.000Z (7 days ago)
- Last Synced: 2025-04-27T10:22:42.574Z (7 days ago)
- Topics: client-side, css, docker, html5, htmx, httpd, nunjucks
- Language: CSS
- Homepage: https://c.oncook.top
- Size: 135 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Compactor service frontend
[](https://c.oncook.top)Simple frontend for the [compactor](https://github.com/streamdp/compactor) service written with [htmx](https://htmx.org/).
Provides information about the client's IP address and also gives you the ability to get
information about any IP address you want.### Build and run
You could build docker container and run it:
```shell
$ docker build -t static:latest .
$ docker run -it --rm --init -p 80:80 static:latest
```
or use simple compose file, such like that one:
```shell
version: "3.5"
services:
compactor-fe:
image: streamdp/compactor-fe:v0.0.1
container_name: compactor-fe
ports:
- "80:80"
restart: always
```
and run this with the following command:
```shell
$ docker-compose up -d
```
### Screenshot
![]()
## Contributing
Contributions are welcome! If you encounter any issues, have suggestions for new features, or want to improve **compactor-fe**, please feel free to open an issue or submit a pull request on the project's GitHub repository.## License
**compactor-fe** is released under the _Apache 2.0_ License. See the [LICENSE](https://github.com/streamdp/compactor-fe/blob/main/LICENSE) file for complete license details.