File size: 268 Bytes
8412325
45e3447
e62a97c
 
5783142
e62a97c
 
 
 
8412325
 
 
e62a97c
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

# Generate a unique user ID for this space
USER_ID=$(uuidgen)

# Create a new user with the generated user ID
useradd -m -u "$USER_ID" user

# Switch to the new user
su - user

# Start the application
uvicorn app.main:app --host 0.0.0.0 --port 7860 --reload