Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/streamdp/ip-info-fe
Just a simple frontend for the ip-info backend
https://github.com/streamdp/ip-info-fe
client-side-template css docker html5 htmx httpd nunjucks
Last synced: about 20 hours ago
JSON representation
Just a simple frontend for the ip-info backend
- Host: GitHub
- URL: https://github.com/streamdp/ip-info-fe
- Owner: streamdp
- License: apache-2.0
- Created: 2025-01-06T21:40:23.000Z (2 days ago)
- Default Branch: main
- Last Pushed: 2025-01-07T10:24:53.000Z (1 day ago)
- Last Synced: 2025-01-07T10:46:43.585Z (1 day ago)
- Topics: client-side-template, css, docker, html5, htmx, httpd, nunjucks
- Language: JavaScript
- Homepage: https://ip-info.oncook.top
- Size: 112 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## IP location service frontend
[![Website ip-info.oncook.top](https://img.shields.io/website-up-down-green-red/https/ip-info.oncook.top.svg)](https://ip-info.oncook.top)Simple frontend for the [ip-info](https://github.com/streamdp/ip-info) 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:
static:
build: .
image: static:latest
container_name: static
ports:
- "80:80"
```
and run this with the following command:
```shell
$ docker-compose up -d
```
### Screenshot