Remove Python dependencies and update project documentation
Removes main.py, pyproject.toml, and updates replit.md to reflect a Node.js-only project. Replit-Commit-Author: Agent Replit-Commit-Session-Id: aed2e46d-25bb-4b73-81a1-bb9e8437c261 Replit-Commit-Checkpoint-Type: intermediate_checkpoint Replit-Commit-Event-Id: 772cbdad-bafa-41c5-bc3e-c3c11c19f0af Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3bdfff67-975a-46ad-9845-fbb6b4a4c4b5/aed2e46d-25bb-4b73-81a1-bb9e8437c261/mYZvK75 Replit-Helium-Checkpoint-Created: true
This commit is contained in:
parent
a44d8c8c42
commit
704af08a7d
4 changed files with 2 additions and 1499 deletions
5
main.py
5
main.py
|
|
@ -1,5 +0,0 @@
|
|||
import os
|
||||
import sys
|
||||
|
||||
os.chdir("aethex-bot")
|
||||
os.system("npm start")
|
||||
1466
poetry.lock
generated
1466
poetry.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -1,27 +0,0 @@
|
|||
[tool.poetry]
|
||||
name = "python-template"
|
||||
version = "0.1.0"
|
||||
description = ""
|
||||
authors = ["Your Name <you@example.com>"]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = ">=3.10.0,<3.11"
|
||||
gunicorn = "^23.0.0"
|
||||
discord-py = "^2.6.4"
|
||||
flask = "^3.1.2"
|
||||
flask-sqlalchemy = "^3.1.1"
|
||||
psycopg2-binary = "^2.9.11"
|
||||
requests = "^2.32.5"
|
||||
|
||||
[tool.pyright]
|
||||
# https://github.com/microsoft/pyright/blob/main/docs/configuration.md
|
||||
useLibraryCodeForTypes = true
|
||||
|
||||
[tool.ruff]
|
||||
# https://beta.ruff.rs/docs/configuration/
|
||||
select = ['E', 'W', 'F', 'I', 'B', 'C4', 'ARG', 'SIM']
|
||||
ignore = ['W291', 'W292', 'W293']
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=1.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
|
@ -25,7 +25,6 @@ AeThex Unified Bot handles both community features AND security:
|
|||
aethex-bot/
|
||||
├── bot.js # Main entry point (merged: original + Sentinel)
|
||||
├── package.json
|
||||
├── .env.example # Complete environment template
|
||||
├── Dockerfile # Docker deployment config
|
||||
├── discloud.config # DisCloud hosting config
|
||||
├── DEPLOYMENT_GUIDE.md # Deployment documentation
|
||||
|
|
@ -169,4 +168,6 @@ Commands are registered automatically on startup or via POST to `/register-comma
|
|||
|
||||
- **Name**: AeThex Unified Bot
|
||||
- **Command**: `cd aethex-bot && npm start`
|
||||
- **Runtime**: Node.js 20 (no Python required)
|
||||
- **Deployment**: VM target with `sh -c "cd aethex-bot && npm start"`
|
||||
- **Status**: Running
|
||||
|
|
|
|||
Loading…
Reference in a new issue