Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kenken999
/
fastapi_django_main_live
like
8
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d8bbcde
fastapi_django_main_live
/
routers
/
ai
/
run.sh
kenken999
test
d8bbcde
about 1 year ago
raw
Copy download link
history
blame
196 Bytes
#!/bin/bash
# Install dependencies
pip install -r requirements.txt
# Run Django application
python manage.py runserver &
# Run FastAPI application
uvicorn main:app --host 0.0.0.0 --port 8001 &