forked from phoenix/litellm-mirror
* fix move docker files to docker folders * move check file length * fix docker hub deploy * fix clean up root * fix circle ci config
13 lines
276 B
Bash
Executable file
13 lines
276 B
Bash
Executable file
#!/bin/bash
|
|
echo $(pwd)
|
|
|
|
# Run the Python migration script
|
|
python3 litellm/proxy/prisma_migration.py
|
|
|
|
# Check if the Python script executed successfully
|
|
if [ $? -eq 0 ]; then
|
|
echo "Migration script ran successfully!"
|
|
else
|
|
echo "Migration script failed!"
|
|
exit 1
|
|
fi
|