temps

(★ 663)

AI-native open-source alternative to Vercel + Sentry + PostHog + Pingdom + Resend + E2B. 440+ CLI operations with drop-in skills for Claude Code, Codex & OpenCode — deployments, analytics, session replay, error tracking, OpenTelemetry, email, sandboxes & AI gateway in one self-hosted Rust binary.

Showing a partial file list — download the zip above to see everything.

  • .dockerignore
  • .env.example
  • .gitattributes
  • .gitignore
  • .pre-commit-config.yaml
  • _typos.toml
  • AGENTS.md
  • Cargo.lock
  • Cargo.toml
  • CHANGELOG.md
  • CLAUDE.md
  • cliff.toml
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • DCO
  • DESIGN.md
  • docker-compose.yml
  • Dockerfile
  • Dockerfile.release
  • LICENSE
  • LICENSE-MIT
  • NOTICE
  • README.de.md
  • README.es.md
  • README.fr.md
  • README.ja.md
  • README.md
  • README.pt-BR.md
  • README.zh-CN.md
  • SECURITY.md

🚀 Installation Guide

1. Get the code
git clone https://github.com/gotempsh/temps

Downloads the entire project code from GitHub to your computer.

cd temps

Moves into the project folder you just downloaded.

2. Official Install Script

Easy Recommended
curl -fsSL https://temps.sh/deploy.sh | bash

Downloads and runs the official install script in one line — this handles the full setup automatically.

After installing, open a new terminal and run the program's version command (e.g. --version) to confirm it worked.

Pulled directly from this repo's README.

3. Docker

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker compose -f apps/temps-e2e/docker-compose.e2e.yml up -d --build

Runs the command against the services defined in the compose file.

Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.

4. .NET

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • .NET SDK The SDK required for the dotnet command.
cd examples/csharp/dotnet-basic

This project's files live in a subfolder, so move into it first.

dotnet restore

Downloads the packages the project depends on.

dotnet run

Builds the project and runs it immediately.

After dotnet run, check the message or address shown in the terminal.

5. Node.js

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Node.js Node.js must be installed to use npm. The LTS version is recommended.
const { stdout } = await sandbox.exec(['npm', 'test'])

Type this command into your terminal and run it.

After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.

Pulled directly from this repo's README.

6. Go

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Go The Go compiler and toolchain.
cd examples/go/error-tracking

This project's files live in a subfolder, so move into it first.

go build ./...

Compiles the Go program into an executable.

go run .

Runs the Go program directly without a separate build step.

If the build finishes without errors, it worked. If you used go run ., check the terminal output.

7. Rust

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Rust (rustup) Installing via rustup also installs cargo.
cargo build --release

Compiles the Rust project.

If cargo build finishes without errors, it worked. The executable is created under target/.

Pulled directly from this repo's README.

// repository documentation