Biomind Logicis an educational resource integration platform that provides students with access to organized academic materials such as mind maps, syllabus analysis, and more. This project combines a Next.js frontend with a Flask backend, using MySQL for data storage and management.
- Responsive User Interface: Built with Next.js and TailwindCSS for a seamless user experience across devices.
- Resource Organization: Resources are categorized by education level (e.g., A-Level, IGCSE) and subject for intuitive browsing.
- Authentication System: Includes login, registration, and password reset functionality using Flask APIs.
- Dynamic Routing: Implements resource navigation with dynamic paths (e.g.,
/Resources/[category]/[level]/[subject]
).
Located in the src
directory:
components
: Reusable UI components, such asHeader
,Navbar
, andFooter
.pages
:- API Routes: Authentication logic in
api
folder (login.js
,register.js
, etc.). - Dynamic Pages: Resource browsing implemented via nested routes (e.g.,
Resources/[category]/[level]/[subject]
). - Static Pages: Includes
about.js
,categories.js
, etc., for general site information.
- API Routes: Authentication logic in
app.py
: Entry point for the Flask server, handling API routes and database connections.lib/db.js
: Contains logic for database interactions using MySQL.
next.config.js
: Next.js configuration for environment variables and build settings.tailwind.config.js
: TailwindCSS configuration for styling.requirements.txt
: Lists Python dependencies for Flask backend.
- Next.js: React framework for server-side rendering and static site generation.
- TailwindCSS: Utility-first CSS framework for responsive styling.
- Flask: Lightweight Python web framework for handling API requests.
- MySQL: Relational database for managing user and resource data.
Ensure the following are installed on your system:
- Node.js (v16 or higher)
- Python (v3.8 or higher)
- MySQL
- npm or yarn
- pip
-
Clone the repository:
git clone https://github.com/Thresh514/biomindweb.git cd biomindweb
-
Install backend dependencies:
pip install -r requirements.txt
-
Install frontend dependencies:
cd src npm install
-
Set up the MySQL database:
- Create a new database:
CREATE DATABASE biomindweb;
- Update the Flask configuration in
app.py
with your database credentials:app.config['SQLALCHEMY_DATABASE_URI'] = 'mysql+pymysql://username:password@localhost/biomindweb'
- Create a new database:
-
Start the Flask backend:
python app.py
-
Start the Next.js frontend:
cd src npm run dev
-
Access the application at:
http://localhost:3000
- Add user roles (e.g., student, administrator) for resource management.
- Enable video streaming for classroom recordings.
- Implement search and recommendation systems for resources.
- Enhance backend with caching for improved performance.
Created by Jiayong Tu
Email: tonytudaodao@gmail.com
GitHub: Thresh514