- Refined entitlements to work with MiB for both embeddings and storage
- Improved DocumentVersion storage attributes to reflect Minio settings - Added size to DocumentVersions to easily calculate usage - License / LicenseTier forms and views added
This commit is contained in:
17
scripts/repopack_eveai.sh
Executable file
17
scripts/repopack_eveai.sh
Executable file
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Run repopack to generate the file
|
||||
repopack
|
||||
|
||||
# Check if repopack generated the eveai_repo.txt file
|
||||
if [[ -f "eveai_repo.txt" ]]; then
|
||||
# Get the current timestamp in the format YYYY-DD-MM_HH:MM:SS
|
||||
timestamp=$(date +"%Y-%d-%m_%H-%M-%S")
|
||||
|
||||
# Rename the file with the timestamp
|
||||
mv eveai_repo.txt "${timestamp}_eveai_repo.txt"
|
||||
|
||||
echo "File renamed to ${timestamp}_eveai_repo.txt"
|
||||
else
|
||||
echo "Error: eveai_repo.txt not found. repopack may have failed."
|
||||
fi
|
||||
Reference in New Issue
Block a user