Telegram workout tracker bot with Mini App web UI, SQLite database, API server, and cloudflared tunnel support. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
6 lines
177 B
Bash
Executable file
6 lines
177 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Convenience wrapper for running without nix.
|
|
# With nix, just use: nix run
|
|
set -euo pipefail
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
exec python start.py "$@"
|