A full-stack NFT generation and management platform built with Express.js, React, and Solana integration.
- Automated NFT image generation using HuggingFace API
- Solana blockchain integration for NFT minting and management
- Supabase integration for storage and database
- Real-time metadata updates and image processing
- React-based frontend with modern UI components (Radix UI)
- Secure authentication with Passport.js
- WebSocket support for real-time updates
- Database management with Drizzle ORM
- Node.js (v16 or higher)
- TypeScript
- PostgreSQL database
- Solana wallet and RPC endpoint
- HuggingFace API key
- Supabase account and project
- Clone the repository:
git clone <repository-url>
cd <project-directory>
- Install dependencies:
npm install
- Set up environment variables:
cp .env.example .env
Required environment variables:
SOLANA_RPC_URL='' # Solana RPC endpoint
HF_API_KEY='' # HuggingFace API key
DATABASE_URL='' # PostgreSQL connection URL
SUPABASE_URL='' # Supabase project URL
SUPABASE_KEY='' # Supabase project key
SOLANA_COLLECTION_ID='' # Solana NFT collection ID
SOLANA_PRIVATE_KEY='' # Solana wallet private key
SUPABASE_BUCKET='' # Supabase storage bucket name
βββ client/ # React frontend
β βββ src/
β βββ App.tsx # Main application component
β βββ index.css # Global styles
βββ server/
β βββ lib/
β β βββ imageGen.ts # HuggingFace image generation
β β βββ supabase.ts # Supabase client setup
β β βββ uploadImage.ts # Image upload handling
β β βββ promptManager.ts # AI prompt management
β βββ routes.ts # API routes
β βββ index.ts # Server entry point
βββ db/
β βββ schema.ts # Drizzle ORM schema
β βββ index.ts # Database setup
βββ drizzle.config.ts # Drizzle configuration
- Start the development server:
npm run dev
- Build for production:
npm run build
- Start production server:
npm start
This project uses Drizzle ORM for database operations. To update your database schema:
npm run db:push
npm run dev
- Start development server with hot reloadnpm run build
- Build for productionnpm start
- Start production servernpm run check
- Run TypeScript type checkingnpm run db:push
- Push database schema changes
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
This project is licensed under the MIT License.
For support, please open an issue in the repository.