-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfilestructure.txt
59 lines (59 loc) · 1.51 KB
/
filestructure.txt
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
ycla_ai/
│
├── config/
│ ├── settings/
│ │ ├── __init__.py
│ │ ├── common.py
│ │ ├── development.py
| | |── key_values.py # Environment variables
│ │ ├── local.py
│ │ └── production.py
│ │
│ ├── __init__.py
│ ├── asgi.py
│ ├── celery.py # Celery configuration
│ ├── urls.py
│ └── wsgi.py
│
├── chat_api/
│ ├── migrations/
│ │ └── __init__.py
│ │
│ ├── __init__.py
│ ├── admin.py
│ ├── apps.py
│ ├── models.py
│ ├── serializers.py
│ ├── tasks.py # Celery tasks for chat_api
│ ├── tests.py
│ ├── urls.py
| |── utils.py # Utility functions for chat_api
│ └── views.py
│
├── ycla_chat/
│ ├── migrations/
│ │ └── __init__.py
│ │
│ ├── __init__.py
│ ├── admin.py
│ ├── apps.py
│ ├── models.py
│ ├── serializers.py
│ ├── tasks.py # Celery tasks for ycla_chat
│ ├── tests.py
│ ├── urls.py
│ └── views.py
│
├── templates/
│ └── api_documentation.html
│
├── static/
│ └── css/
│ └── api_documentation.css
│
│
├── .env
├── .gitignore
├── manage.py
├── requirements.txt
└── worker.py # Celery worker entry point