mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-01-23 09:16:25 +01:00
55 lines
1.5 KiB
Bash
Executable File
55 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
INSTANCE_PATH="instance"
|
|
|
|
init () {
|
|
mkdir -p "$INSTANCE_PATH"
|
|
mkdir -p "$INSTANCE_PATH/partitions"
|
|
mkdir -p "$INSTANCE_PATH/attachments"
|
|
mkdir -p "$INSTANCE_PATH/search-partitions"
|
|
mkdir -p "partitioncloud/static/thumbnails"
|
|
mkdir -p "partitioncloud/static/search-thumbnails"
|
|
|
|
if ! test -f "$INSTANCE_PATH/config.py"; then
|
|
echo "SECRET_KEY=$(python3 -c 'import secrets; print(secrets.token_hex())')" > "$INSTANCE_PATH/config.py"
|
|
fi
|
|
|
|
if test -f "$INSTANCE_PATH/partitioncloud.sqlite"; then
|
|
printf "Souhaitez vous supprimer la base de données existante ? [y/n] "
|
|
read -r CONFIRMATION
|
|
[[ $CONFIRMATION == y ]] || exit 1
|
|
fi
|
|
sqlite3 "$INSTANCE_PATH/partitioncloud.sqlite" '.read partitioncloud/schema.sql'
|
|
echo "Base de données créé"
|
|
sqlite3 "$INSTANCE_PATH/partitioncloud.sqlite" '.read partitioncloud/init.sql'
|
|
echo "Utilisateur root:root ajouté"
|
|
}
|
|
|
|
start () {
|
|
flask run --port=$PORT
|
|
}
|
|
|
|
production () {
|
|
FLASK_APP=partitioncloud /usr/bin/gunicorn \
|
|
wsgi:app \
|
|
--bind 0.0.0.0:$PORT
|
|
}
|
|
|
|
|
|
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
|
|
# Import config
|
|
source "default_config.py"
|
|
[[ ! -x" $INSTANCE_PATH/config.py" ]] && source "$INSTANCE_PATH/config.py"
|
|
$1 ${*:2} # Call the function
|
|
else
|
|
usage
|
|
echo $(type "$1")
|
|
exit 1
|
|
fi
|