-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsrc.txt
More file actions
executable file
·65 lines (65 loc) · 1.79 KB
/
src.txt
File metadata and controls
executable file
·65 lines (65 loc) · 1.79 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
coboarding/
├── docker-compose.yml
├── .env
├── .gitignore
├── README.md
├── deploy.sh
├── stop.sh
├── logs.sh
├── app/
│ ├── Dockerfile
│ ├── requirements.txt
│ ├── main.py
│ ├── api.py
│ ├── core/
│ │ ├── __init__.py
│ │ ├── cv_processor.py
│ │ ├── form_detector.py
│ │ ├── automation_engine.py
│ │ ├── chat_interface.py
│ │ └── notification_service.py
│ ├── database/
│ │ ├── __init__.py
│ │ ├── models.py
│ │ ├── connection.py
│ │ └── migrations/
│ └── utils/
│ ├── __init__.py
│ └── gdpr_compliance.py
├── worker/
│ ├── Dockerfile
│ ├── requirements.txt
│ ├── worker.py
│ ├── core/
│ │ ├── __init__.py
│ │ └── automation_worker.py
│ └── utils/
│ ├── __init__.py
│ └── helpers.py
├── cleanup/
│ ├── Dockerfile
│ ├── requirements.txt
│ ├── daily_cleanup.py
│ └── scripts/
│ ├── __init__.py
│ └── maintenance.py
├── scripts/
│ ├── init.sql
│ ├── backup.sh
│ └── restore.sh
├── data/
│ ├── job_listings.json
│ └── sample_cv.pdf
├── templates/
│ ├── email_templates/
│ │ ├── candidate_notification.html
│ │ └── employer_notification.html
│ └── chat_templates/
│ └── welcome_message.txt
├── uploads/
├── downloads/
├── logs/
└── docs/
├── API.md
├── DEPLOYMENT.md
└── ARCHITECTURE.md