Commit before setting up a new deployment environment

This commit is contained in:
Josako
2024-06-21 13:21:54 +02:00
parent cc9f6c95aa
commit 348bdf2c15
1208 changed files with 504328 additions and 19 deletions

70
project structure Normal file
View File

@@ -0,0 +1,70 @@
eveAI/
├── .venv/
├── common/
│ ├── models/
│ │ ├── __init__.py
│ │ ├── document.py
│ │ ├── interaction.py
│ │ └── user.py
│ │
│ └── utils/
│ ├── __init__.py
│ └── extensions.py
├── config/
│ ├── __init__.py
│ ├── config.py
│ └── logging_config.py
├── eveai_app/
│ ├── static/
│ ├── templates/
│ │ ├── basic/
│ │ ├── document/
│ │ ├── interaction/
│ │ ├── security/
│ │ ├── user/
│ │ ├── base.html
│ │ ├── footer.html
│ │ ├── head.html
│ │ ├── header.html
│ │ ├── index.html
│ │ ├── macros.html
│ │ ├── navbar.html
│ │ ├── navbar_macros.html
│ │ └── scripts.html
│ │
│ └── views/
│ ├── __init__.py
│ ├── basic_views.py
│ ├── document_forms.py
│ ├── document_views.py
│ ├── errors.py
│ ├── temp/
│ ├── user_forms.py
│ └── user_views.py
├── eveai_workers/
│ ├── __init__.py
│ ├── celery_utils.py
│ └── tasks.py
├── instance/
├── logs/
│ ├── app.log
│ ├── eveai.app.log
│ └── eveai.workers.log
├── migrations/
├── scripts/
│ ├── run_eveai_app.py
│ ├── run_eveai_workers.py
│ ├── start_eveai_app.sh
│ ├── start_eveai_workers.sh
│ ├── start_flower.sh
│ └── start_logdy.sh
└── requirements.txt