A full-stack application for video note-taking with AI capabilities.
frontend/- Next.js application with React and TypeScriptbackend/- Django REST API server
cd frontend
npm install
npm run devThe frontend will be available at http://localhost:3000
cd backend
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt
python manage.py migrate
python manage.py runserverThe backend API will be available at http://localhost:8000
- Frontend: Next.js 14 with React and TypeScript
- Backend: Django 5.0 with Django REST Framework
- Database: SQLite (development) / PostgreSQL (production)
- Modern, responsive UI
- RESTful API architecture
- Type-safe development with TypeScript
- Secure authentication system
- API documentation with Swagger/OpenAPI