uchill/front_minimal
Dev Server d4ec417ebf feat: migrate Homework, Materials, Students, Notifications to front_minimal
- Homework: kanban view with columns (pending/submitted/returned/reviewed/fill_later/ai_draft), details drawer with submission list for mentor, submit drawer for client, edit draft drawer; full AI-grade support
- Materials: grid view with image preview, upload and delete dialogs
- Students: mentor view with student list + pending requests + invite by email/code; client view with mentors list + incoming invitations + send request by mentor code
- Notifications: full page + NotificationsDrawer in header connected to real API (mark read, delete, mark all)
- New API utils: homework-api.js, materials-api.js, students-api.js, notifications-api.js
- Added routes: /dashboard/homework, /dashboard/materials, /dashboard/students, /dashboard/notifications
- Updated navigation config with new items

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-09 10:09:30 +03:00
..
public feat: calendar form improvements + real-time sync 2026-03-08 02:46:06 +03:00
src feat: migrate Homework, Materials, Students, Notifications to front_minimal 2026-03-09 10:09:30 +03:00
.editorconfig feat: calendar form improvements + real-time sync 2026-03-08 02:46:06 +03:00
.eslintignore feat: calendar form improvements + real-time sync 2026-03-08 02:46:06 +03:00
.eslintrc.cjs feat: calendar form improvements + real-time sync 2026-03-08 02:46:06 +03:00
.gitignore feat: calendar form improvements + real-time sync 2026-03-08 02:46:06 +03:00
.prettierignore feat: calendar form improvements + real-time sync 2026-03-08 02:46:06 +03:00
Dockerfile feat: calendar form improvements + real-time sync 2026-03-08 02:46:06 +03:00
README.md feat: calendar form improvements + real-time sync 2026-03-08 02:46:06 +03:00
jsconfig.json feat: calendar form improvements + real-time sync 2026-03-08 02:46:06 +03:00
next.config.mjs feat: calendar form improvements + real-time sync 2026-03-08 02:46:06 +03:00
package-lock.json feat: calendar form improvements + real-time sync 2026-03-08 02:46:06 +03:00
package.json feat: calendar form improvements + real-time sync 2026-03-08 02:46:06 +03:00
prettier.config.mjs feat: calendar form improvements + real-time sync 2026-03-08 02:46:06 +03:00
yarn.lock feat: calendar form improvements + real-time sync 2026-03-08 02:46:06 +03:00

README.md

Prerequisites

  • Node.js 20.x (Recommended)

Installation

Using Yarn (Recommended)

yarn install
yarn dev

Using Npm

npm i
npm run dev

Build

yarn build
# or
npm run build

Mock server

By default we provide demo data from : https://api-dev-minimal-[version].vercel.app

To set up your local server:

Full version

Starter version

  • To remove unnecessary components. This is a simplified version (https://starter.minimals.cc/)
  • Good to start a new project. You can copy components from the full version.
  • Make sure to install the dependencies exactly as compared to the full version.

NOTE: When copying folders remember to also copy hidden files like .env. This is important because .env files often contain environment variables that are crucial for the application to run correctly.