An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

        

## Compactor service frontend
[![Website c.oncook.top](https://img.shields.io/website-up-down-green-red/https/c.oncook.top.svg)](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


ip location service 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.