Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
ashwinR
/
Gurucool_Test
like
0
Build error
App
Files
Files
Community
e027829
Gurucool_Test
/
start.sh
ashwinR
Update start.sh
e027829
over 1 year ago
raw
Copy download link
history
blame
221 Bytes
#!/bin/bash
# Start Redis
service redis-server start
# Start PostgreSQL
service postgresql start
# Run migrations
alembic upgrade
head
# Start the FastAPI app using Uvicorn
uvicorn app:app --host 0.0.0.0 --port 7860