You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
786 B
42 lines
786 B
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
source ./common.sh
|
|
|
|
function setup_frontend() {
|
|
prefix_stdout_stderr "${PURPLE}frontend: ${NC}"
|
|
|
|
cd ./frontend
|
|
|
|
echo "Installing dependencies..."
|
|
npm i
|
|
|
|
echo "Done!"
|
|
}
|
|
|
|
function setup_backend() {
|
|
prefix_stdout_stderr "${CYAN}backend: ${NC}"
|
|
|
|
cd ./backend
|
|
|
|
echo "Deleting old virtual environment..."
|
|
rm -rf ./venv
|
|
|
|
echo "Deleting sqlite database..."
|
|
rm ./links.db || echo "Nothing to delete ¯\_(ツ)_/¯"
|
|
|
|
echo "Creating new virtual environment..."
|
|
python3 -m venv venv
|
|
source venv/bin/activate
|
|
|
|
echo "Installing dependencies..."
|
|
pip install -r requirements.txt
|
|
|
|
echo "Creating a dummy sqlite database at 'backend/links.db'..."
|
|
python setup_db.py
|
|
|
|
echo "Done!"
|
|
}
|
|
|
|
run_frontend_backend "setup_frontend" "setup_backend"
|
|
|