- Common library was removed one way or another

- Processor Catalog now required
This commit is contained in:
Josako
2025-05-08 15:47:39 +02:00
parent 4c480c9baa
commit a421977918
4 changed files with 9 additions and 2 deletions

1
.gitignore vendored
View File

@@ -52,3 +52,4 @@ scripts/__pycache__/run_eveai_app.cpython-312.pyc
/patched_packages/crewai/ /patched_packages/crewai/
/docker/prometheus/data/ /docker/prometheus/data/
/docker/grafana/data/ /docker/grafana/data/
/temp_requirements/

View File

@@ -1 +0,0 @@
3.12.7

View File

@@ -68,7 +68,7 @@ class ProcessorForm(FlaskForm):
query_factory=lambda: Catalog.query.all(), query_factory=lambda: Catalog.query.all(),
allow_blank=True, allow_blank=True,
get_label='name', get_label='name',
validators=[Optional()], validators=[DataRequired()],
) )
# Select Field for Catalog Type (Uses the CATALOG_TYPES defined in config) # Select Field for Catalog Type (Uses the CATALOG_TYPES defined in config)

7
scripts/find_requirements.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env bash
rm -fr temp_requirements/*
for component in common eveai_app eveai_api eveai_workers eveai_chat_workers eveai_entitlements eveai_beat; do
pipreqs $component/ --savepath temp_requirements/$component.txt
done