Replace standalone Telegram bot with full CodeAnywhere framework fork. BetterBot shares all framework code and customizes only: - instance.py: BetterBot identity, system prompt, feature flags - tools/site_editing/: list_files, read_file, write_file with auto git push - .env: model defaults and site directory paths - compose/: Docker setup with betterlifesg + memoraiz mounts - deploy script: RackNerd with Infisical secrets
15 lines
281 B
TOML
15 lines
281 B
TOML
[project]
|
|
name = "code-anywhere"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"github-copilot-sdk>=0.2.2",
|
|
"python-telegram-bot>=22.7",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ipykernel>=7.2.0",
|
|
]
|