-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsrc.txt
More file actions
91 lines (91 loc) · 3.4 KB
/
src.txt
File metadata and controls
91 lines (91 loc) · 3.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
taskprovision/
├── README.md
├── LICENSE
├── install.sh # One-line installer
├── setup.py # PyPI package setup
├── pyproject.toml # Modern Python packaging
├── requirements.txt # Dependencies
├── Dockerfile # Container support
├── docker-compose.yml # Development environment
├── kubernetes/ # K8s deployment files
│ ├── namespace.yaml
│ ├── deployment.yaml
│ ├── service.yaml
│ ├── ingress.yaml
│ └── configmap.yaml
├── scripts/ # Installation & setup scripts
│ ├── setup_infrastructure.sh
│ ├── deploy_kubernetes.sh
│ ├── setup_monitoring.sh
│ └── backup_restore.sh
├── src/taskprovision/ # Main application
│ ├── __init__.py
│ ├── main.py # FastAPI application
│ ├── config/
│ │ ├── __init__.py
│ │ ├── settings.py
│ │ └── database.py
│ ├── api/ # API endpoints
│ │ ├── __init__.py
│ │ ├── auth.py
│ │ ├── projects.py
│ │ ├── generation.py
│ │ └── billing.py
│ ├── core/ # Core business logic
│ │ ├── __init__.py
│ │ ├── code_generator.py
│ │ ├── quality_guard.py
│ │ ├── task_manager.py
│ │ └── ai_analyzer.py
│ ├── models/ # Data models
│ │ ├── __init__.py
│ │ ├── user.py
│ │ ├── project.py
│ │ └── task.py
│ ├── services/ # External services
│ │ ├── __init__.py
│ │ ├── github_service.py
│ │ ├── stripe_service.py
│ │ ├── email_service.py
│ │ └── ollama_service.py
│ └── utils/ # Utilities
│ ├── __init__.py
│ ├── security.py
│ ├── helpers.py
│ └── validators.py
├── web/ # Frontend (if needed)
│ ├── index.html
│ ├── static/
│ │ ├── css/
│ │ ├── js/
│ │ └── images/
│ └── templates/
├── campaigns/ # Sales automation
│ ├── github_lead_mining.py
│ ├── email_sequences.py
│ ├── demo_generator.py
│ └── customer_success.py
├── tools/ # Free tools for lead generation
│ ├── repo_health_checker.py
│ ├── code_analyzer.py
│ └── ai_suggestions.py
├── tests/ # Test suite
│ ├── __init__.py
│ ├── test_api.py
│ ├── test_core.py
│ ├── test_services.py
│ └── fixtures/
├── docs/ # Documentation
│ ├── README.md
│ ├── api.md
│ ├── deployment.md
│ └── sales_playbook.md
├── monitoring/ # Monitoring & analytics
│ ├── prometheus.yml
│ ├── grafana/
│ └── alerts.yml
└── .github/ # GitHub workflows
└── workflows/
├── ci.yml
├── deploy.yml
└── pypi.yml