mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-12 23:47:17 +00:00
036366274e
* bump mike * bump some docs * update some settings and serve script to use mike
20 lines
431 B
Bash
Executable file
20 lines
431 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
VENV_PATH="./venv/"
|
|
PYTHON_CMD=${1:-python}
|
|
|
|
if [ ! -d $VENV_PATH ]; then
|
|
echo "venv not found, creating one using the command '${PYTHON_CMD}'...";
|
|
$PYTHON_CMD -m venv venv;
|
|
source ./venv/bin/activate;
|
|
pip install --upgrade pip;
|
|
pip install -r requirements.txt;
|
|
./venv/bin/mike serve;
|
|
else
|
|
echo "venv already found.";
|
|
source ./venv/bin/activate;
|
|
./venv/bin/mike serve;
|
|
fi;
|
|
|