bbj/setup.sh

45 lines
876 B
Bash
Raw Permalink Normal View History

2017-04-02 07:35:58 +00:00
#!/bin/bash
DEPS=(
cherrypy
2017-04-13 15:27:05 +00:00
urwid
2024-04-21 20:27:49 +00:00
jinja2
2017-04-02 07:35:58 +00:00
)
2017-04-02 14:53:55 +00:00
case $1 in
--help )
cat <<EOF
This script initializes the deps and files for bbj and also sets up its database.
It takes the following flags:
--help to print this
--dbset only runs the sql script
2017-04-02 07:35:58 +00:00
2017-04-02 14:53:55 +00:00
You can optionally pass a different python interpreter to use (such as
a virtual environment), with no arguments this will use the system python3
2019-03-03 22:13:24 +00:00
2017-04-02 14:53:55 +00:00
EOF
exit;;
2019-03-03 22:13:24 +00:00
2017-04-02 14:53:55 +00:00
--dbset )
sqlite3 data.sqlite < schema.sql
2019-03-03 22:13:24 +00:00
echo cleared
2017-04-05 22:24:43 +00:00
chmod 600 data.sqlite
2019-03-03 22:13:24 +00:00
exit;;
2017-04-02 14:53:55 +00:00
esac
2017-04-02 07:35:58 +00:00
2017-04-02 14:53:55 +00:00
[[ -e logs ]] || mkdir logs; mkdir logs/exceptions
2019-03-03 22:13:24 +00:00
PYTHON=`which python3`
2017-04-02 14:53:55 +00:00
[[ -z $1 ]] || PYTHON=$1
echo Using $PYTHON...
$PYTHON -m pip install ${DEPS[*]}
2019-03-03 22:13:24 +00:00
2017-04-02 07:35:58 +00:00
echo "Enter [i] to initialize a new database"
read CLEAR
2019-03-03 22:13:24 +00:00
if [[ $CLEAR == "i" ]]; then
sqlite3 data.sqlite < schema.sql
chmod 600 data.sqlite
fi