10 lines
148 B
Bash
Executable File
10 lines
148 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -rf tmp dist
|
|
|
|
if [ "$1" = "test" ]; then
|
|
ember s --proxy http://101.236.35.13/
|
|
else
|
|
ember s --proxy http://127.0.0.1:8088/
|
|
fi
|