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