Spaces:
Running
Running
File size: 246 Bytes
8412325 45e3447 57184e7 8412325 5783142 8412325 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/bin/sh
# Check if the user already exists
if ! id user >/dev/null 2>&1; then
# Create a new user
useradd -m -u 1000 user
fi
# Switch to the user
su - user
# Start the application
uvicorn app.main:app --host 0.0.0.0 --port 7860 --reload
|