mirror of
https://github.com/plausible/analytics.git
synced 2024-11-28 04:30:42 +03:00
13 lines
143 B
Bash
Executable File
13 lines
143 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [[ "$1" = 'run' ]]; then
|
|
/app/bin/plausible start
|
|
|
|
elif [[ "$1" = 'db' ]]; then
|
|
/app/"$2".sh
|
|
fi
|
|
|
|
exec "$@"
|
|
|