No description
Find a file
2022-01-25 19:14:09 +01:00
db Changed redis client 2022-01-25 19:14:09 +01:00
routes Changed Redis Layout for V8 2022-01-13 20:06:30 +01:00
utils Changed env layout + Start info 2022-01-25 17:25:23 +01:00
views Update dependency font-awesome to v5.15.4 2022-01-13 17:57:49 +00:00
.gitignore Update .gitignore 2021-12-08 11:38:57 +01:00
.gitlab-ci.yml Changed gosec alpine to latest 2022-01-25 18:12:42 +01:00
docker-compose-proxy.yml Changed redis client 2022-01-25 19:14:09 +01:00
docker-compose.yml Changed redis client 2022-01-25 19:14:09 +01:00
Dockerfile Refractor code & adding ci tagged build 2022-01-11 12:05:07 +01:00
go.mod Update module github.com/gofiber/fiber/v2 to v2.25.0 2022-01-21 09:03:42 +00:00
go.sum Update module github.com/gofiber/fiber/v2 to v2.25.0 2022-01-21 09:03:42 +00:00
LICENSE Add LICENSE 2021-12-07 21:30:15 +01:00
main.go Changed env layout + Start info 2022-01-25 17:25:23 +01:00
README.md Fixed CI Layout 2022-01-25 08:20:01 +01:00
renovate.json Update renovate.json 2022-01-14 08:24:53 +01:00

goshorly

An easy self-hosted Link shortener in Golang with Redis <3 Live-Demo


Supported architectures

Docker

  • amd64, arm64
  • other versions can be build manually (via docker build)

Binary Build

  • linux (amd64,arm64)
  • darwin (amd64,arm64)
  • windows (amd64)
  • other versions can be build manually (via go build)

WARNING:

  • goshorly is in an early stage, it is not an Final Version! (Pre-Release Status v0.1.X)

If you have an feature request, please do not hesitate to open an issue or merge request.

Available Docker tags:

Install with Docker

Installation with Docker-Compose (with no reverse proxy / own proxy):

mkdir goshorly
cd goshorly
wget https://git.ucode.space/Phil/goshorly/-/raw/main/docker-compose.yml
nano docker-compose.yml # Change the environment variables to your needs
docker-compose up -d

Installation with Docker-Compose (built in proxy / caddy as reverse proxy):

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
nano docker-compose.yml # Change the command line on caddy to your domain & environment variables to your needs
docker-compose up -d

Install with Binary version

  • WIP