8 lines
144 B
Bash
8 lines
144 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [[ "x$1" == "x+" ]]; then
|
||
|
./manage.py runserver_plus 127.0.0.1:8010
|
||
|
else
|
||
|
./manage.py runserver --insecure 127.0.0.1:8010
|
||
|
fi
|