31 lines
965 B
Markdown
31 lines
965 B
Markdown
# i2pd tunnel wizard
|
|
|
|
A simple assistant for generating i2pd tunnel configuration files with an intuitive web interface (without JS) and i18n support (Russian and English).
|
|
|
|
Clean C++. One external dependency is the `asio` library.
|
|
|
|
It consumes 4MB of RAM in runtime.
|
|
|
|
Runs with a simple command `./i2pdtunnelwizard <address> <port>`.
|
|
|
|
## quick start
|
|
|
|
```
|
|
sudo apt install build-essential make cmake git libasio-dev
|
|
git clone http://git.community.i2p/acetone/i2pdtunnelwizard
|
|
cd i2pdtunnelwizard
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
make
|
|
```
|
|
and run it as
|
|
```
|
|
./i2pdtunnelwizard 127.0.0.1 8080
|
|
```
|
|
and visit `http://127.0.0.1:8080`
|
|
|
|
## license
|
|
|
|
This application uses the [Crow](https://github.com/CrowCpp/Crow) library and [asio](http://think-async.com/Asio/). Please consider their licensing wishes. About my code: I don't know anything about copyright and I just don't give a fuck. Copy, use, break or fix mistakes. I don't care. I guess it's called the public domain.
|