Profiles/bots (profiles.py, main.py): - Surface real send errors; fix group send and member-count staleness (refresh on view) - Group/channel actions: join, leave, owner delete; consistent member counts - Contacts: always-visible Chat, plus Clear chat and Delete contact - Support bot: OpenAI-compatible LLM backend (Grok/Ollama/OpenAI) per-bot config - Deadmans bot: check-in window, trigger message, recipients, owner - Directory bot: add-to-group registration, super-user /approve /reject /list, search, publishes listing.json in the website schema (directory.py registry module) - Profile edit (name/bio/avatar) + avatars on list pages - Global status + /network page (operators, SMP/XFTP servers) and Settings network info UI (templates): - Chat rooms; collapsible left sidebar with notifications + network widget - Per-directory-bot website generated on creation (name substituted) - Matrix theme; copy/hyperlink addresses; site footer Ignore runtime bot state and generated directory sites. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
27 lines
580 B
Bash
Executable File
27 lines
580 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
# Bootstrap virtualenv on first run
|
|
if [ ! -d ".venv" ]; then
|
|
echo "Creating virtualenv..."
|
|
python3 -m venv .venv
|
|
.venv/bin/pip install -q --upgrade pip
|
|
.venv/bin/pip install -q -r requirements.txt
|
|
fi
|
|
|
|
mkdir -p data/bots
|
|
mkdir -p static
|
|
|
|
# Set token — override via: MANAGER_TOKEN=mysecret ./start.sh
|
|
export MANAGER_TOKEN="${MANAGER_TOKEN:-changeme}"
|
|
|
|
echo ""
|
|
echo " SimpleX Manager"
|
|
echo " URL: http://0.0.0.0:8000"
|
|
echo " Token: $MANAGER_TOKEN"
|
|
echo ""
|
|
|
|
exec .venv/bin/uvicorn main:app --host 0.0.0.0 --port 8000 --reload
|