2021-12-07 18:32:48 +00:00
|
|
|
![](https://git.ucode.space/Phil/goshorly/badges/main/pipeline.svg)
|
2021-12-07 13:55:58 +00:00
|
|
|
# goshorly
|
|
|
|
|
2021-12-07 20:49:01 +00:00
|
|
|
An easy self-hosted Link shortener in Golang with Redis <3
|
2021-12-07 17:19:29 +00:00
|
|
|
|
2021-12-07 19:44:38 +00:00
|
|
|
[Live-Demo](https://gly.one)
|
|
|
|
|
|
|
|
|
2021-12-07 19:43:42 +00:00
|
|
|
**WARNING:**
|
|
|
|
- goshorly is in an early stage, it is not an Final Version!
|
|
|
|
|
2021-12-07 22:41:52 +00:00
|
|
|
If you have an feature request, please do not hesitate to open an issue or merge request.
|
|
|
|
|
2021-12-07 19:43:42 +00:00
|
|
|
Installation with Docker-Compose (with no reverse proxy / own proxy):
|
2021-12-07 17:19:29 +00:00
|
|
|
```bash
|
|
|
|
mkdir goshorly
|
|
|
|
cd goshorly
|
|
|
|
wget https://git.ucode.space/Phil/goshorly/-/raw/main/docker-compose.yml
|
2021-12-07 19:43:42 +00:00
|
|
|
nano docker-compose.yml # Change the environment variables to your needs
|
2021-12-07 17:19:29 +00:00
|
|
|
docker-compose up -d
|
|
|
|
```
|
|
|
|
|
2021-12-07 19:43:42 +00:00
|
|
|
Installation with Docker-Compose (built in proxy / caddy as reverse proxy):
|
2021-12-07 18:32:48 +00:00
|
|
|
```bash
|
|
|
|
mkdir goshorly
|
|
|
|
cd goshorly
|
|
|
|
wget https://git.ucode.space/Phil/goshorly/-/raw/main/docker-compose-proxy.yml
|
|
|
|
mv docker-compose-proxy.yml docker-compose.yml
|
2021-12-07 19:43:42 +00:00
|
|
|
nano docker-compose.yml # Change the command line on caddy to your domain & environment variables to your needs
|
2021-12-07 18:32:48 +00:00
|
|
|
docker-compose up -d
|
|
|
|
```
|