Skip to content

Solana NFT generator with dynamic image updates. Uses HF πŸ€— to generate images and update NFT metadata upon token trade

Notifications You must be signed in to change notification settings

019ec6e2/dynamic-nft-generator

Repository files navigation

NFT Generation Server

A full-stack NFT generation and management platform built with Express.js, React, and Solana integration.

πŸš€ Features

  • 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

πŸ“‹ Prerequisites

  • Node.js (v16 or higher)
  • TypeScript
  • PostgreSQL database
  • Solana wallet and RPC endpoint
  • HuggingFace API key
  • Supabase account and project

πŸ› οΈ Installation

  1. Clone the repository:
git clone <repository-url>
cd <project-directory>
  1. Install dependencies:
npm install
  1. 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

πŸ—οΈ Project Structure

β”œβ”€β”€ 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

🚦 Getting Started

  1. Start the development server:
npm run dev
  1. Build for production:
npm run build
  1. Start production server:
npm start

πŸ’Ύ Database Management

This project uses Drizzle ORM for database operations. To update your database schema:

npm run db:push

πŸ”§ Available Scripts

  • npm run dev - Start development server with hot reload
  • npm run build - Build for production
  • npm start - Start production server
  • npm run check - Run TypeScript type checking
  • npm run db:push - Push database schema changes

🀝 Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

πŸ“ License

This project is licensed under the MIT License.

πŸ†˜ Support

For support, please open an issue in the repository.

About

Solana NFT generator with dynamic image updates. Uses HF πŸ€— to generate images and update NFT metadata upon token trade

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages