asura

(★ 12)

Uptime Kuma alternative with 19 monitor types, distributed agents, real-time dashboards, status pages, and alert integrations. Runs as a single binary.

File Explorer

  • .dockerignore
  • .editorconfig
  • .gitignore
  • asura.service
  • config.example.yaml
  • CONTRIBUTING.md
  • dev.ps1
  • dev.sh
  • docker-compose.yml
  • Dockerfile
  • go.mod
  • go.sum
  • install.sh
  • LICENSE
  • Makefile
  • README.md
  • SECURITY.md

# 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 up

View Details ▼

Start and run Docker services defined in a Compose file.

docker compose up

Start all services defined in the docker-compose file:

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

Start services in the background (detached mode):

docker compose up --build

Start services and rebuild images before starting:

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

scp

View Details ▼

Secure copy.
Copy files between hosts using Secure Copy Protocol over SSH.

scp {{path/to/local_file}} {{remote_host}}:{{path/to/remote_file}}

Copy a local file to a remote host:

scp -P {{port}} {{path/to/local_file}} {{remote_host}}:{{path/to/remote_file}}

Use a specific port when connecting to the remote host:

scp {{remote_host}}:{{path/to/remote_file}} {{path/to/local_directory}}

Copy a file from a remote host to a local directory:

// repository documentation