Skip to content

HisMax/RedInk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

26 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

δΈ­ζ–‡ | English

GitHub Stars License Docker Pulls GitHub Release

RedInk - Inspiration at Your Fingertips, Making Creation Effortless Various social media covers generated with RedInk

Various social media covers generated with RedInk - AI-powered, consistent style, accurate text


✨ Showcase

Type One Sentence, Get Complete Image & Text Posts

Step 1: Smart Outline Generation

Outline Example

Features:

  • ✏️ Edit content for each page
  • πŸ”„ Reorder pages (not recommended)
  • ✨ Custom description per page (highly recommended)
🎨 Step 2: Cover Page Generation

Cover Example

Cover Highlights:

  • 🎯 Matches your personal style
  • πŸ“ Accurate text rendering
  • 🌈 Visually consistent and coordinated
πŸ“š Step 3: Batch Content Page Generation

Content Page Example

Generation Notes:

  • ⚑ Concurrent generation for all pages (up to 15 by default)
  • ⚠️ Disable high concurrency in settings if your API doesn't support it
  • πŸ”§ Regenerate individual pages you're not satisfied with

πŸ—οΈ Tech Stack

πŸ”§ Backend

Technology Description
Language Python 3.11+
Framework Flask
Package Manager uv
Text AI Gemini 3
Image AI 🍌 Nano Banana Pro

🎨 Frontend

Technology Description
Framework Vue 3 + TypeScript
Build Tool Vite
State Management Pinia
Styling Modern CSS

πŸ“¦ Deployment

Option 1: Docker (Recommended)

The simplest way β€” one command to start:

docker run -d -p 12398:12398 -v ./history:/app/history -v ./output:/app/output histonemax/redink:latest

Visit http://localhost:12398 and configure your API Key in the Settings page.

Using docker-compose (optional):

Download docker-compose.yml, then:

docker-compose up -d

Docker Notes:

  • The container does not include any API Keys β€” configure them in the web UI
  • Use -v ./history:/app/history to persist history
  • Use -v ./output:/app/output to persist generated images
  • Optional: mount custom config -v ./text_providers.yaml:/app/text_providers.yaml

Option 2: Local Development

Prerequisites:

  • Python 3.11+
  • Node.js 18+
  • pnpm
  • uv

1. Clone the Repository

git clone https://github.com/HisMax/RedInk.git
cd RedInk

2. Configure API Services

Copy the config templates:

cp text_providers.yaml.example text_providers.yaml
cp image_providers.yaml.example image_providers.yaml

Edit the config files with your API Key and service settings, or configure them later via the Settings page in the web UI.

3. Install Backend Dependencies

uv sync

4. Install Frontend Dependencies

cd frontend
pnpm install

5. Start the Services

One-Click Start (Recommended)

Run the start script to automatically install dependencies and launch both frontend and backend:

  • macOS: start.sh or double-click scripts/start-macos.command
  • Linux: ./start.sh
  • Windows: Double-click start.bat

The browser will automatically open at http://localhost:5173

Manual Start

Start Backend:

uv run python -m backend.app

Visit: http://localhost:12398

Start Frontend:

cd frontend
pnpm dev

Visit: http://localhost:5173


πŸ”§ Configuration

Configuration Methods

The project supports two configuration methods:

  1. Web UI (Recommended): Visual configuration via the Settings page after starting the service
  2. YAML Files: Edit config files directly

Text Generation Config

Config file: text_providers.yaml

# Active provider
active_provider: openai

providers:
  # OpenAI or compatible API
  openai:
    type: openai_compatible
    api_key: sk-xxxxxxxxxxxxxxxxxxxx
    base_url: https://api.openai.com/v1
    model: gpt-4o

  # Google Gemini (native API)
  gemini:
    type: google_gemini
    api_key: AIzaxxxxxxxxxxxxxxxxxxxxxxxxx
    model: gemini-2.0-flash

Image Generation Config

Config file: image_providers.yaml

# Active provider
active_provider: gemini

providers:
  # Google Gemini image generation
  gemini:
    type: google_genai
    api_key: AIzaxxxxxxxxxxxxxxxxxxxxxxxxx
    model: gemini-3-pro-image-preview
    high_concurrency: false

  # OpenAI compatible API
  openai_image:
    type: image_api
    api_key: sk-xxxxxxxxxxxxxxxxxxxx
    base_url: https://your-api-endpoint.com
    model: dall-e-3
    high_concurrency: false

High Concurrency Mode

  • Off (default): Images generated one by one β€” suitable for GCP $300 trial accounts or rate-limited APIs
  • On: Images generated in parallel (up to 15 simultaneously) β€” faster but requires API support for high concurrency

⚠️ Not recommended for GCP $300 trial accounts β€” may trigger rate limits and cause generation failures.


⚠️ Notes

  1. API Quota Limits:

    • Be aware of Gemini and image generation API call quotas
    • GCP trial accounts should keep high concurrency disabled
  2. Generation Time:

    • Image generation takes time β€” please be patient (don't leave the page)

🀝 Contributing

Issues and Pull Requests are welcome!

If this project helps you, please give it a Star ⭐


Changelog

v1.4.2 (2026-03-15)

  • ✨ Added English README as default with language toggle (δΈ­ζ–‡/English)
  • ✨ Added AI-generated English banner and showcase grid images
  • ✨ Added Claude Opus 4.5 to acknowledgments
  • ✨ Added shields.io badges (Stars, License, Docker Pulls, Release)
  • ✨ Added GitHub Issue/PR templates for standardized contributions
  • ✨ Added CONTRIBUTING.md and SECURITY.md
  • πŸ› Fixed rstrip('/v1') incorrectly stripping URL characters (e.g. api.openai.com β†’ api.openai.co) β€” 5 occurrences across backend
  • πŸ› Fixed image API test connection failing for chat-based endpoints (Doubao/Volcengine) by using configured endpoint_type instead of hardcoded /v1/models
  • πŸ› Fixed bare except: clause replaced with except Exception: in history service
  • πŸ› Fixed SSE stream reader not released on error in frontend API layer (resource leak)
  • πŸ› Fixed 5 uncleared setTimeout calls in ContentDisplay component (memory leak)
  • πŸ› Fixed duplicate image regeneration requests by tracking in-progress indices
  • πŸ› Fixed GenerateView redirect timer not cleared on component unmount

v1.4.1 (2025-12-29)

  • ✨ Added one-click start scripts for macOS/Linux/Windows
  • ✨ Added copywriting generation: auto-generate titles, body text, and tags
  • πŸ”§ Fixed history saving: immediate save after outline generation, auto-save on edit (300ms debounce)
  • πŸ”§ Optimized navigation: force-save unsaved changes before clicking "Start Generation"
  • πŸ”§ Unified startup script port display to 12398
  • πŸ”§ Cleaned up unused retry decorator code in backend generators
  • πŸ”§ Fixed frontend CSS variable reference issues
  • πŸ”§ Optimized checkHistoryExists API performance with dedicated endpoint
  • πŸ”§ Standardized recordId assignment using setRecordId() method

v1.4.0 (2025-11-30)

  • πŸ—οΈ Backend refactored: split monolithic routes into modular blueprints (history, images, generation, outline, config)
  • πŸ—οΈ Frontend refactored: extracted reusable components (ImageGalleryModal, OutlineModal, ShowcaseBackground, etc.)
  • ✨ Optimized homepage design, removed redundant content blocks
  • ✨ Background image preloading with fade-in animation for better loading experience
  • ✨ History persistence support (Docker deployment)
  • πŸ”§ Fixed history preview and outline viewing
  • πŸ”§ Optimized Modal component visibility control
  • πŸ§ͺ Added 65 backend unit tests

v1.3.0 (2025-11-26)

  • ✨ Added Docker support for one-click deployment
  • ✨ Published official Docker image to Docker Hub: histonemax/redink
  • πŸ”§ Flask auto-detects frontend build artifacts for single-container deployment
  • πŸ”§ Docker image includes blank config templates to protect API Key security
  • πŸ“ Updated README with Docker deployment instructions

v1.2.0 (2025-11-26)

  • ✨ Added copyright info display on all pages
  • ✨ Improved image regeneration with single image redraw support
  • ✨ Regenerated images maintain style consistency with full context (cover, outline, user input)
  • ✨ Fixed image cache issues β€” regenerated images refresh immediately
  • ✨ Unified text generation client supporting Google Gemini and OpenAI-compatible APIs with auto-switching
  • ✨ Added web UI configuration for visual API provider management
  • ✨ Added high concurrency mode toggle for different API quotas
  • ✨ API Key masking for security
  • ✨ Auto-save configuration with instant effect
  • πŸ”§ Adjusted default max_output_tokens to 8000 for broader model compatibility
  • πŸ”§ Optimized frontend routing and page layout for better UX
  • πŸ”§ Simplified config file structure, removed redundant parameters
  • πŸ”§ Optimized history image display with thumbnails to save bandwidth
  • πŸ”§ History regeneration auto-loads cover image from filesystem as reference
  • πŸ› Fixed missing store.updateImage method causing regeneration failure
  • πŸ› Fixed image URL concatenation error during history loading
  • πŸ› Fixed raw image parameter handling in download function
  • πŸ› Fixed image loading 500 error

Community & Support

Contact the Author

Support the Project

Buy me a coffee

Star History

Star History Chart


πŸ“„ License

Personal Use - CC BY-NC-SA 4.0

This project is licensed under CC BY-NC-SA 4.0

You are free to:

  • βœ… Personal Use β€” for learning, research, and personal projects
  • βœ… Share β€” copy and redistribute the material in any medium or format
  • βœ… Adapt β€” remix, transform, and build upon the material

Under the following terms:

  • πŸ“ Attribution β€” You must give appropriate credit, provide a link to the license, and indicate if changes were made
  • 🚫 NonCommercial β€” You may not use the material for commercial purposes
  • πŸ”„ ShareAlike β€” If you remix, transform, or build upon the material, you must distribute your contributions under the same license

Commercial License

If you wish to use this project for commercial purposes (including but not limited to):

  • Providing paid services
  • Integrating into commercial products
  • Operating as a SaaS service
  • Other for-profit uses

Please contact the author for a commercial license:

  • πŸ“§ Email: histonemax@gmail.com
  • πŸ’¬ WeChat: Histone2024 (please note "Commercial License Inquiry")

The author will provide flexible commercial licensing options based on your specific use case.


Disclaimer

This software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages, or other liability.


πŸ™ Acknowledgments

  • Google Gemini β€” Powerful text generation capabilities
  • Claude Opus 4.5 β€” Intelligent code assistance and development support
  • Image generation service providers β€” Stunning image generation
  • Linux.do β€” Excellent developer community

πŸ‘¨β€πŸ’» Author

Mozi (Histone) - AI Entrepreneur

  • 🏠 Location: Hangzhou, China
  • πŸš€ Status: Startup in progress
  • πŸ“§ Email: histonemax@gmail.com
  • πŸ’¬ WeChat: Histone2024 (personal WeChat β€” no tech support)
  • πŸ™ GitHub: @HisMax

"Let AI do the creative work for us"


If this project helped you, share it with others! ⭐

Questions or suggestions? Feel free to open an Issue!

About

Red Ink - A one-stop Xiaohongshu image-and-text generator based on the 🍌Nano Banana Pro🍌, "One Sentence, One Image: Generate Xiaohongshu Text and Images."

Topics

Resources

License

Contributing

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors