lancache-autofill/install.sh

19 lines
597 B
Bash
Raw Normal View History

2017-02-05 22:18:16 +00:00
#!/bin/bash
2017-08-17 00:00:45 +00:00
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
GREEN='\033[0;32m'
BLACK='\033[0m'
2017-02-05 22:18:16 +00:00
2017-08-17 00:00:45 +00:00
printf "${GREEN}Installing dependencies with Composer${BLACK}\n"
2017-08-27 21:16:20 +00:00
cd $SCRIPT_DIR && composer install
2017-08-17 00:00:45 +00:00
printf "${GREEN}Creating database file${BLACK}\n"
cd $SCRIPT_DIR && touch "database.sqlite"
2017-12-09 02:49:42 +00:00
printf "${GREEN}Creating your environment file${BLACK}\n"
2017-08-27 21:16:20 +00:00
cd $SCRIPT_DIR && cp ".env.example" ".env"
cd $SCRIPT_DIR && ./lancache-autofill app:initialise-database --yes
cd $SCRIPT_DIR && ./lancache-autofill steam:update-app-list
cd $SCRIPT_DIR && ./lancache-autofill steam:initialise --yes