6 lines
87 B
Bash
6 lines
87 B
Bash
#!/bin/sh
|
|
while [[ "1" = "1" ]]; do
|
|
python3 manage.py runserver 0:8090
|
|
sleep 10
|
|
done
|