5 lines
115 B
Bash
5 lines
115 B
Bash
|
|
#!/bin/bash
|
||
|
|
cd "$(dirname "$0")"
|
||
|
|
if [ ! -f config.yaml ]; then cp config.yaml.example config.yaml; fi
|
||
|
|
./server
|