Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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


ip location service screenshot