Web-Application for Discussing different Topics using the Django-Framework
Done with the help of the tutorial provided by Dennis Ivy
Clone the repository
git clone https://github.com/hubanton/LearnAssistant.git
Move into project folder
cd learnassistant
Setup venv
# install virtualenv if not already on your pc
pip install virtualenv
# Setup venv
virtualenv ENV_NAME
Activate venv
ENV_NAME\scripts\activate
Inside your venv, install all relevant packages
python -m pip install -r requirements.txt
Start the server on localhost (You need an account to use the app, but the email does not need to be valid...)
python manage.py runserver