mirror of
https://github.com/w-okada/voice-changer.git
synced 2025-01-23 21:45:00 +03:00
14 lines
194 B
Bash
Executable File
14 lines
194 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo config: $1
|
|
echo model: $2
|
|
cp -r /resources/* .
|
|
|
|
if [[ -e ./setting.json ]]; then
|
|
cp ./setting.json ../frontend/dist/assets/setting.json
|
|
fi
|
|
|
|
python3 serverSIO.py 8080 $1 $2
|
|
|
|
|