golink

(★ 1,923)

A private shortlink service for tailnets

File Explorer

  • .gitattributes
  • .gitignore
  • db.go
  • db_test.go
  • Dockerfile
  • flake.lock
  • flake.nix
  • go.mod
  • go.mod.sri
  • go.sum
  • go.toolchain.rev
  • go.toolchain.rev.sri
  • go.toolchain.version
  • golink.go
  • golink_test.go
  • LICENSE
  • package.json
  • README.md
  • schema.sql
  • screenshot.png
  • tailwind.config.js
  • update-flake.sh
  • yarn.lock

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

docker compose

View Details ▼

Run and manage multi container Docker applications.

docker compose ps

List all running containers:

docker compose up {{[-d|--detach]}}

Create and start all containers in the background using a `docker-compose.yml` file from the current directory:

docker compose up --build

Start all containers, rebuild if necessary:

🔍

docker run

View Details ▼

This command is an alias of `docker container run`.

tldr docker container run

View documentation for the original command:

🔍

go run

View Details ▼

Compile and run Go code without saving a binary.

go run {{path/to/file.go}}

Run a Go file:

go run {{path/to/package}}

Run a main Go package:

// repository documentation