Added prisma migrate param

This commit is contained in:
Andrew Stout 2025-08-07 19:06:07 -05:00
parent 155e431b2a
commit 758f198acd
No known key found for this signature in database
GPG Key ID: B01268A581FC2448

View File

@ -53,7 +53,6 @@ general_settings:
master_key: sk-1234 master_key: sk-1234
database_url: postgresql://$DB_USER:$DB_PASS@127.0.0.1:5432/$DB_NAME database_url: postgresql://$DB_USER:$DB_PASS@127.0.0.1:5432/$DB_NAME
store_model_in_db: true store_model_in_db: true
use_prisma_migrate: true
EOF EOF
cat <<EOF >/etc/systemd/system/"${APPLICATION}".service cat <<EOF >/etc/systemd/system/"${APPLICATION}".service
@ -62,7 +61,7 @@ Description=LiteLLM
[Service] [Service]
Type=simple Type=simple
ExecStart=litellm --config /opt/"${APPLICATION}".yaml ExecStart=litellm --config /opt/${APPLICATION}.yaml --use_prisma_migrate
Restart=always Restart=always
[Install] [Install]