prod-api / startup.sh
Samagra07's picture
Update startup.sh
d417527 verified
Raw
History Blame Contribute Delete
332 Bytes
#!/bin/bash
echo "Cloning private repository..."
git clone https://${GITLAB_DEPLOY_USER}:${GITLAB_DEPLOY_TOKEN}@gitlab.com/${GITLAB_USERNAME}/${GITLAB_REPO}.git repo
cd repo
echo "Installing dependencies..."
pip install -r requirements.txt
echo "Starting FastAPI..."
uvicorn app:app --host 0.0.0.0 --port 7860 --no-access-log