golink
A private shortlink service for tailnets
File Explorer
- docker.yml
- nix.yml
- tests.yml
- main.go
- base.css
- favicon.png
- favicon.svg
- base.html
- delete.html
- detail.html
- help.html
- home.html
- opensearch.xml
- search.html
- success.html
- .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
jsDelivrjsDelivr 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 ▼
docker compose
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 ▼
docker run
This command is an alias of `docker container run`.
tldr docker container run
View documentation for the original command:
go run
View Details ▼
go run
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:
