Independent FastAPI backend for the MaskanX agentic growth platform. Includes the agent runtime, MCP client integrations (Meta Ads, LinkedIn, HubSpot, Tavily, Exa, xAI, Citedy, image generation), PostgreSQL storage for chats and cron jobs, provider and secret management, and the CLI. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
53 lines
576 B
Plaintext
53 lines
576 B
Plaintext
# Git and IDE
|
|
.git
|
|
.gitignore
|
|
.idea
|
|
.vscode
|
|
*.md
|
|
!README.md
|
|
|
|
# Python dev and cache
|
|
__pycache__
|
|
*.py[cod]
|
|
*$py.class
|
|
.venv
|
|
venv
|
|
uv.lock
|
|
.pytest_cache
|
|
.coverage
|
|
htmlcov
|
|
.tox
|
|
.mypy_cache
|
|
.ruff_cache
|
|
|
|
# Tests (not needed in runtime image)
|
|
tests
|
|
test.py
|
|
*_test.py
|
|
pytest.ini
|
|
.pre-commit-config.yaml
|
|
.flake8
|
|
.eslintrc
|
|
.stylelintrc
|
|
|
|
# Node command-runner dependencies
|
|
node_modules
|
|
**/node_modules
|
|
**/dist
|
|
**/.vite
|
|
|
|
# Example and local config (mount at runtime instead)
|
|
example
|
|
config.json
|
|
jobs.json
|
|
sessions_mount_dir
|
|
|
|
# Misc
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
.DS_Store
|
|
*.log
|
|
logs
|
|
cookbook
|