__
___ ___/ |_ _____
\ \/ /\ __\/ \
\ / | | | Y Y \
\_/ |__| |__|_| /
\/
mysqladmin -u root create vtmdb
python3 -m venv vtm_venv
source vtm_venv/bin/activate
pip install -r requirements.txt
./manage.py migrate
./manage.py loaddata taskManager/fixtures/*
./manage.py runserver
- Navigate to http://localhost:8000
- Login with the username
chris
and a password oftest123
brew install mysql mysql-client mariadb-connector-c pkgconf
brew services start mysql
mysqladmin -u root create vtmdb
python3.12 -m venv vtm_venv
source vtm_venv/bin/activate
pip install -r requirements.txt
./manage.py migrate
./manage.py loaddata taskManager/fixtures/*
brew install redis
brew services start redis
pipenv install python-dotenv
cd chatBot
cp env.list .env
- Paste Open AI API key into .env file
cd chatBot
streamlit run main.py &; cd ..; ./manage.py runserver
Navigate to http://localhost:8000 Login with the usernamechris
and a password oftest123
Navigate tohttp://localhost:8502
for the AI Chatbot