Sign inSign up

sgonzalezh/holostack

By sgonzalezh

Updated 8 months ago

Private Pokémon TCG collection manager. Track prices, manage sets, and binders with zero config.

Image
Web servers
Databases & storage
0

2.1K

sgonzalezh/holostack repository overview

🃏 HoloStack: Pokémon TCG Manager

Manage your Pokémon card collection like a pro!

HoloStack is a private, ultra-fast web application designed for collectors. Keep track of your cards, check real-time prices, and manage your collections in a secure, local environment.


✨ Key Features

  • 🚀 Total Privacy: Your data stays on your computer. Nothing is uploaded to a public cloud.
  • 💰 Live Pricing: Integration with market APIs to track your collection's value.
  • 🔍 Advanced Search: Find any card from any set in just a couple of clicks.
  • 📁 Collection Management: Create multiple binders, binders, or virtual displays.
  • 🔌 Zero Config: No database knowledge required—the app builds itself on startup.

⚡ Quick Install (1 Minute)

To enjoy HoloStack on your computer, you only need Docker installed.

  • Create a new folder named pokemon-tcg.
  • Inside that folder, create a file named docker-compose.yml.
  • Paste the following content into the file:
services:
  app:
    image: sgonzalezh/holostack:latest
    container_name: holostack_app
    restart: always
    ports:
      - "3000:3000"
    volumes:
      - ./data:/app/data
    environment:
      - DATABASE_FILE=/app/data/sqlite.db
      - APP_MODE=LOCAL
      - NEXTAUTH_SECRET=choose_a_random_key_here
      - NEXTAUTH_URL=http://localhost:3000
  • Open a terminal in that folder and run:
docker-compose up -d

🔄 How to Update

HoloStack receives constant improvements. To get the latest version, just run:

docker-compose pull
docker-compose up -d

Your database and cards will update automatically without any data loss.


💬 Feedback & Bug Reports

We want to hear from you! If you find any issues or have suggestions for new features:

Please check the FAQ below before opening a new issue.


🛠️ Support & Community

Built with ❤️ for the card collecting community.

  • Status: Stable Beta
  • Mode: Local / Server

Tag summary

Content type

Image

Digest

sha256:54ce04fb2

Size

90.2 MB

Last updated

8 months ago

docker pull sgonzalezh/holostack