Skip to content
Β 
Β 

Repository files navigation

NestFT.dev πŸš€

Build Real Experience. Get Hired.

A collaborative development platform where developers work on real-world projects, get AI-graded feedback, and build professional portfolios that showcase the experience employers seek.

Next.js React TypeScript Supabase Tailwind CSS

🌟 Overview

NestFT.dev bridges the gap between traditional coding education and real-world development experience. Our platform provides:

  • Real-world Projects: Curated projects that mirror actual industry requirements
  • AI-Powered Grading: Intelligent feedback system that evaluates code quality, functionality, and best practices
  • Collaborative Environment: Browser-based IDE with real-time collaboration features
  • Progressive Learning: Structured learning paths from beginner to advanced levels
  • Professional Portfolios: Automatically generated portfolios showcasing completed projects
  • Industry Recognition: Certificates and achievements that employers value

✨ Key Features

🎯 Project-Based Learning

  • 60+ Real-world Projects across different difficulty levels
  • Multiple Tech Stacks: Frontend, Backend, Full-stack, and DevOps projects
  • Industry-Relevant: Projects designed by experienced developers and industry professionals

πŸ€– AI-Powered Assessment

  • Intelligent Code Review: AI analyzes code quality, structure, and best practices
  • Detailed Feedback: Comprehensive reports with improvement suggestions
  • Scoring System: Fair and consistent grading based on industry standards
  • Learning Insights: Personalized recommendations for skill development

πŸ‘₯ Collaborative Development

  • Real-time Collaboration: Work with other developers simultaneously
  • Browser-based IDE: Full-featured development environment with Monaco Editor
  • Version Control: Integrated Git workflow with GitHub synchronization
  • Code Reviews: Peer review system for enhanced learning

πŸ“Š Progress Tracking

  • Skill Progression: Clear advancement through beginner, intermediate, and advanced levels
  • Leaderboards: Global rankings based on project completions and code quality
  • Achievement System: Certificates and badges for milestones and accomplishments
  • Portfolio Generation: Professional portfolios with live project demonstrations

πŸ›  Development Tools

  • Multi-language Support: JavaScript, TypeScript, Python, and more
  • Framework Templates: React, Vue, Angular, Node.js, Express, Django
  • Deployment Integration: One-click deployment to popular hosting platforms
  • Terminal Access: Full terminal functionality for advanced development workflows

πŸš€ Getting Started

Prerequisites

  • Node.js (v18.0.0 or higher)
  • npm or yarn
  • Git

Installation

  1. Clone the repository

    git clone https://github.com/your-username/nestft-dev.git
    cd nestft-dev
  2. Install dependencies

    npm install
    # or
    yarn install
  3. Environment Setup

    cp .env.example .env.local

    Configure the following environment variables:

    NEXT_PUBLIC_SUPABASE_URL=your_supabase_url
    NEXT_PUBLIC_SUPABASE_ANON_KEY=your_supabase_anon_key
  4. Database Setup

    # Initialize Supabase (if using local development)
    npx supabase start
    
    # Run migrations
    npx supabase db reset
  5. Start the development server

    npm run dev
    # or
    yarn dev
  6. Open your browser Navigate to http://localhost:3000

πŸ— Architecture

Tech Stack

Frontend:

  • Next.js 15 - React framework with App Router
  • React 19 - UI library with latest features
  • TypeScript - Type-safe development
  • Tailwind CSS 4 - Utility-first CSS framework
  • Framer Motion - Animation library
  • Monaco Editor - VS Code-powered code editor

Backend & Database:

  • Supabase - Backend-as-a-Service with PostgreSQL
  • Row Level Security - Database-level security policies
  • Real-time Subscriptions - Live data synchronization

Development Tools:

  • XTerm.js - Terminal emulation
  • HTML2Canvas - Certificate generation
  • JSZip - Project export functionality
  • Zustand - State management

Project Structure

nestft-dev/
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ app/                    # Next.js App Router pages
β”‚   β”‚   β”œβ”€β”€ (auth)/            # Authentication pages
β”‚   β”‚   β”œβ”€β”€ dashboard/         # User dashboard
β”‚   β”‚   β”œβ”€β”€ projects/          # Project management
β”‚   β”‚   β”œβ”€β”€ ide/              # Integrated Development Environment
β”‚   β”‚   └── ...
β”‚   β”œβ”€β”€ components/            # Reusable UI components
β”‚   β”‚   β”œβ”€β”€ ui/               # Base UI components
β”‚   β”‚   β”œβ”€β”€ ide/              # IDE-specific components
β”‚   β”‚   └── auth/             # Authentication components
β”‚   β”œβ”€β”€ lib/                  # Utility functions and configurations
β”‚   β”‚   β”œβ”€β”€ database.ts       # Database operations
β”‚   β”‚   β”œβ”€β”€ supabase.ts       # Supabase client
β”‚   β”‚   β”œβ”€β”€ store.ts          # Global state management
β”‚   β”‚   └── aiGrading.ts      # AI grading system
β”‚   β”œβ”€β”€ types/                # TypeScript type definitions
β”‚   └── data/                 # Static data and project templates
β”œβ”€β”€ supabase/
β”‚   β”œβ”€β”€ migrations/           # Database migrations
β”‚   └── config.toml          # Supabase configuration
└── public/                   # Static assets

πŸŽ“ Learning Paths

Beginner Track

  • HTML/CSS Fundamentals
  • JavaScript Basics
  • Responsive Design
  • Basic React Components

Intermediate Track

  • Advanced React Patterns
  • State Management
  • API Integration
  • Testing Fundamentals

Advanced Track

  • Full-stack Applications
  • Database Design
  • Authentication Systems
  • Deployment & DevOps

🀝 Contributing

We welcome contributions from the community! Please read our Contributing Guidelines before submitting pull requests.

Development Workflow

  1. Fork the repository
  2. Create a feature branch
    git checkout -b feature/amazing-feature
  3. Make your changes
  4. Run tests
    npm run test
    npm run lint
  5. Commit your changes
    git commit -m "Add amazing feature"
  6. Push to your branch
    git push origin feature/amazing-feature
  7. Open a Pull Request

Code Standards

  • TypeScript for type safety
  • ESLint for code linting
  • Prettier for code formatting
  • Conventional Commits for commit messages

πŸ“Š Database Schema

Core Tables

  • user_profiles - Extended user information and progress tracking
  • user_projects - Project instances and code storage
  • project_submissions - Submission data and AI grading results
  • learning_guides - Structured learning content
  • user_achievements - Certificates and accomplishments

Security

  • Row Level Security (RLS) enabled on all tables
  • Authentication-based policies for data access
  • Encrypted sensitive data storage

πŸ”§ Configuration

Environment Variables

Variable Description Required
NEXT_PUBLIC_SUPABASE_URL Supabase project URL βœ…
NEXT_PUBLIC_SUPABASE_ANON_KEY Supabase anonymous key βœ…
NODE_ENV Environment (development/production) βœ…

Supabase Setup

  1. Create a new Supabase project
  2. Run the provided migrations
  3. Configure authentication providers
  4. Set up Row Level Security policies

πŸš€ Deployment

Netlify (Recommended)

  1. Connect your repository to Netlify
  2. Configure build settings:
    • Build command: npm run build
    • Publish directory: .next
  3. Set environment variables in Netlify dashboard
  4. Deploy automatically on push to main branch

Vercel

  1. Import project to Vercel
  2. Configure environment variables
  3. Deploy with automatic CI/CD

Docker

# Build the image
docker build -t nestft-dev .

# Run the container
docker run -p 3000:3000 nestft-dev

πŸ“ˆ Performance

  • Lighthouse Score: 95+ across all metrics
  • Core Web Vitals: Optimized for excellent user experience
  • Bundle Size: Optimized with Next.js automatic code splitting
  • Database: Efficient queries with proper indexing

πŸ”’ Security

  • Authentication: Supabase Auth with multiple providers
  • Authorization: Row Level Security policies
  • Data Validation: Server-side validation for all inputs
  • HTTPS: Enforced in production
  • CORS: Properly configured for API access

πŸ“± Browser Support

  • Chrome (latest 2 versions)
  • Firefox (latest 2 versions)
  • Safari (latest 2 versions)
  • Edge (latest 2 versions)

πŸ› Troubleshooting

Common Issues

Build Errors:

# Clear Next.js cache
rm -rf .next
npm run build

Database Connection:

# Check Supabase status
npx supabase status

Environment Variables:

  • Ensure all required variables are set
  • Check for typos in variable names
  • Verify Supabase project configuration

πŸ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

πŸ™ Acknowledgments

  • Supabase for the excellent backend platform
  • Vercel for Next.js and deployment infrastructure
  • Monaco Editor for the powerful code editing experience
  • The Open Source Community for the amazing tools and libraries

πŸ“ž Support


Built with ❀️ by the NestFT.dev team

Website β€’ Documentation β€’ Twitter β€’ LinkedIn

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages