mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 09:37:26 +00:00
10 lines
243 B
Bash
Executable file
10 lines
243 B
Bash
Executable file
#!/bin/bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
|
|
if [ ! -e "data/config.php" ]; then
|
|
cp "$DIR/data/config.php.example" "$DIR/data/config.php"
|
|
fi
|
|
|
|
php7.0 --server localhost:8000 --docroot "$DIR/web" "$DIR/web/index.php"
|