Blueprint is a modern web platform that serves as the central hub for Create Mod content, bringing together community-made addons and player-designed schematics in one place. Our mission is to make Create Mod content more discoverable and manageable for the community.
- 🔍 Addon Discovery: Browse, search and filter Create Mod addons with real-time updates
- 📁 Schematic Sharing: Upload and discover Create Mod contraption designs
- 👥 User Collections: Create and manage personalized addon collections
- 🔄 Version Compatibility: Smart filtering for Minecraft and Create Mod versions
- 🌐 Multi-Platform: Support for multiple mod loaders (Forge, Fabric, NeoForge)
- 🔒 Secure Authentication: OAuth integration with Discord, GitHub, and Google
- 🌙 Theme Support: Toggle between light and dark modes
- 🌍 Internationalization: Multi-language support with i18next
- 📱 Responsive Design: Optimized for all screen sizes
- Framework: React 19 with TypeScript
- Styling: Tailwind CSS, Shadcn/UI components
- State Management:
- TanStack Query for server state
- Zustand for local state
- Signals for reactive state
- Backend Integration: Appwrite
- Search: Meilisearch
- Authentication: OAuth 2.0 with multiple providers
- Build Tool: Vite
- Testing: TBD
- Node.js 18.0 or higher
- npm 9.0 or higher
- Git
- Clone the repository:
git clone https://github.com/blueprint-site/blueprint-site.github.io.git
cd blueprint-site.github.io
- Install dependencies:
npm install
- Create environment configuration: (Contact us on Discord for access)
# Create .env file with required variables
APP_APPWRITE_URL=your_appwrite_url
APP_APPWRITE_PROJECT_ID=your_project_id
APP_MEILISEARCH_URL=your_meilisearch_url
APP_MEILISEARCH_API_KEY=your_api_key
- Start the development server:
npm run dev
Visit http://localhost:5173
to see the application.
src/
├── api/ # API integration hooks and utilities
├── assets/ # Static assets (images, icons, fonts)
├── components/ # React components
│ ├── common/ # Shared components
│ ├── features/ # Feature-specific components
│ ├── layout/ # Layout components
│ └── ui/ # UI components (shadcn)
├── config/ # Configuration files
├── context/ # React context providers
├── hooks/ # Custom React hooks
├── lib/ # Utility libraries and functions
├── pages/ # Page components
├── routes/ # Route definitions
├── schemas/ # Type definitions and schemas
├── stores/ # State management stores
└── styles/ # Global styles and Tailwind config
- Use TypeScript for all components
- Follow React 19 best practices
- Implement proper prop validation
- Include error boundaries where needed
- Add loading states for async operations
- Use Tailwind CSS core utilities only
- Avoid arbitrary values in utility classes
- Follow responsive design patterns
- Maintain dark mode compatibility
- Use Shadcn/UI components when possible
- Follow ESLint configuration
- Write clear component documentation
- Include type definitions
- Maintain accessibility standards
- Use meaningful component names
- Create feature branch from develop
git checkout -b feature/your-feature-name
- Make changes and commit using conventional commits
git commit -m "feat: add new feature"
git commit -m "fix: resolve issue"
- Push changes and create pull request
git push origin feature/your-feature-name
- Fork the repository
- Create your feature branch
- Commit your changes
- Push to the branch
- Open a Pull Request
Please read our Contributing Guidelines for details on our code of conduct and development process.
- Join our Discord Server
- Follow us on GitHub
- Report issues here
This project is licensed under the MIT License - see the LICENSE file for details.
- Email: [email protected]
- Discord: Blueprint Server
- GitHub: @blueprint-site