- Common library was removed one way or another
- Processor Catalog now required
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -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/
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
3.12.7
|
|
||||||
@@ -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
7
scripts/find_requirements.sh
Executable 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
|
||||||
Reference in New Issue
Block a user