A discussion board is a “space” where students can further delve into classroom content. It can promote collaboration, and offer individuals room to explore topics, issues, and/or questions. The discussion board is an excellent tool for students who may feel more comfortable expressing their understanding of course content in a written format, as opposed to verbally.
Make sure you have:
- Python >= 3.8
The first thing to do is to clone the repository:
$ git clone https://github.com/Ammarmoulla/DiscussionBoard.git
$ cd DiscussionBoardCreate a virtual environment to install dependencies in and activate it:
$ python3 -m venv env
$ source env/bin/activateThen install the dependencies:
(env)$ pip install -r requirements.txtNote the (env) in front of the prompt.
Once pip has finished downloading the dependencies:
(env)$ python manage.py runserverAnd navigate to http://127.0.0.1:8000/.
- Ammar Moulla , github: ammarmoulla