File size: 138 Bytes
0a62d9c |
1 2 3 4 5 6 7 |
#!/bin/bash
# Activate virtual environment
source venv/bin/activate
# Run the application
uvicorn app.app:app --host 0.0.0.0 --port 8000
|
0a62d9c |
1 2 3 4 5 6 7 |
#!/bin/bash
# Activate virtual environment
source venv/bin/activate
# Run the application
uvicorn app.app:app --host 0.0.0.0 --port 8000
|