mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-01-23 09:16:25 +01:00
32 lines
658 B
Bash
Executable File
32 lines
658 B
Bash
Executable File
#!/bin/bash
|
|
|
|
init () {
|
|
mkdir -p "instance"
|
|
if [ ! -x instance/partitioncloud.sqlite ]; then
|
|
printf "Souhaitez vous supprimer la base de données existante ? [y/n] "
|
|
read -r CONFIRMATION
|
|
fi
|
|
[[ $CONFIRMATION == y ]] || exit 1
|
|
sqlite3 "instance/partitioncloud.sqlite" '.read partitioncloud/schema.sql'
|
|
echo "Base de données initialisée"
|
|
}
|
|
|
|
start () {
|
|
flask run
|
|
}
|
|
|
|
|
|
usage () {
|
|
echo "Usage:"
|
|
echo -e "\t$0 init"
|
|
echo -e "\t$0 start"
|
|
}
|
|
|
|
if [[ $1 && $(type "$1") = *"is a"*"function"* || $(type "$1") == *"est une fonction"* ]]; then
|
|
$1 ${*:2} # Call the function
|
|
else
|
|
usage
|
|
echo $(type "$1")
|
|
exit 1
|
|
fi
|