A comprehensive web-based debate forum built with Flask and SQLite.
Stanislaw Dutkiewicz
- User Registration and Authentication 🔒
- Debate Topics Creation 📝
- Posting Claims within Topics 💬
- Replies to Claims 🔄
Install dependencies from requirements.txt:
pip install -r requirements.txtExecute run.py to start the Flask server. The database will be initialized automatically if it does not exist.
Forum_website/
├── static/
├── templates/
├── .gitignore
├── Documentation.md
├── LICENSE
├── README.md
├── requirements.txt
├── db_init.py
├── debate_forum.db
├── run.py
├── tempCodeRunnerFile.py
- static/: Contains static files (CSS, JS).
- templates/: HTML templates for rendering web pages.
- db_init.py: Script to set up the database.
- debate_forum.db: The SQLite database file.
- run.py: Main application script to run the server.
- tempCodeRunnerFile.py: Temporary file for development.
This project is licensed under the MIT License. 📜

