{% extends 'documentation/base.html' %} {% block article %}

Get Started with Minne

Minne offers two installation options to suit your needs:

  1. Hosted Version: Enjoy a hassle‐free experience by signing up for the ready‐to‐use service. Simply navigate to /signup to create an account.
  2. Self-Hosted: Gain full control by running Minne on your own infrastructure. Visit GitHub to download the latest release. After extracting the release, open the config.yaml file and set the following configurations:

    OPENAI_API_KEY: your_api_key
    SMTP_EMAIL_RELAYER: your_email_relayer
    SMTP_USERNAME: your_smtp_username
    SMTP_PASSWORD: your_smtp_password
    DB_ADDRESS: your_db_address
    DB_USER: your_db_user
    DB_PASSWORD: your_db_password
  

The database settings relate to a running instance of SurrealDB. You can opt for their cloud solution or run your own instance.

Once your configuration is complete, start both the server and the worker. They can be hosted on separate machines, with different resource requirements:

After launching the services, navigate to <your_url>:3000/signup to register. The first account created will automatically receive admin permissions, allowing you to later disable further registrations via the /admin page if desired.

From the homepage (/), you can:

Visit the /knowledge page to view your content organized by different sections. This page also provides a visual demonstration of the graph database structure, enhancing your understanding of content relationships.

This streamlined setup ensures intuitive onboarding while offering robust customization options. Whether you are a novice or an advanced user, Minne is designed to deliver a smooth experience and reliable performance.

{% endblock %}