run-script-in-background / start_server.sh
nateraw's picture
Update start_server.sh
41941e3
raw
history blame
171 Bytes
#!/bin/bash
# Start the python script in the background asynchronously
nohup python your_script.py &
# Start a simple web server on port 5000
python -m http.server 7860