forked from mito-systems/sol-mem-gen
Part of https://www.notion.so/Debug-and-fix-meme-generator-app-188a6b22d4728043ba2fd706d7c7def7 Reviewed-on: #2 Co-authored-by: Nabarun <nabarun@deepstacksoft.com> Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
47 lines
1022 B
Markdown
47 lines
1022 B
Markdown
# sol-mem-gen
|
|
|
|
This project is a Solana-based meme generator that allows users to connect their wallets, pay with MTM tokens, and generate memes using AI models.
|
|
|
|
## Features
|
|
|
|
- Connect to Solflare and Phantom wallets
|
|
- Pay with MTM tokens
|
|
- Generate memes using various AI models
|
|
|
|
## Prerequisites
|
|
|
|
- Node.js
|
|
- npm
|
|
- Solflare or Phantom wallet
|
|
|
|
## Setup
|
|
|
|
1. Install dependencies:
|
|
```sh
|
|
npm install
|
|
```
|
|
|
|
2. Copy the `.env.example` file to `.env.local` and add your FAL AI key:
|
|
```sh
|
|
cp .env.example .env.local
|
|
```
|
|
|
|
3. Add your FAL AI key to the `.env.local` file:
|
|
```env
|
|
# Get key from https://fal.ai/
|
|
FAL_AI_KEY=your_fal_ai_key
|
|
```
|
|
|
|
4. Run the development server:
|
|
```sh
|
|
npm run dev
|
|
```
|
|
|
|
5. Open your browser and navigate to `http://localhost:3000`.
|
|
|
|
## Usage
|
|
|
|
1. Connect your Solflare or Phantom wallet using the "Connect Wallet" button.
|
|
2. Select an AI model and enter a prompt to generate a meme.
|
|
3. Pay the required MTM tokens and wait for the meme to be generated.
|