Files
eveAI/project structure

71 lines
1.7 KiB
Plaintext

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