Files
talemate/install.sh

29 lines
577 B
Bash
Raw Normal View History

2023-05-05 00:50:02 +03:00
#!/bin/bash
# create a virtual environment
python -m venv talemate_env
# activate the virtual environment
source talemate_env/bin/activate
# install poetry
pip install poetry
# use poetry to install dependencies
poetry install
# copy config.example.yaml to config.yaml only if config.yaml doesn't exist
if [ ! -f config.yaml ]; then
cp config.example.yaml config.yaml
fi
# navigate to the frontend directory
cd talemate_frontend
npm install
# return to the root directory
cd ..
echo "Installation completed successfully."
read -p "Press [Enter] key to continue..."