This guide describes how to run Memorizer locally without using the containerized application.
docker-compose up -d postgres pgadmin ollama ollama-initcd Memorizer
$env:ConnectionStrings__Storage="Host=localhost;Port=5432;Database=postgmem;Username=postgres;Password=postgres"
$env:Embeddings__ApiUrl="http://localhost:11434"
$env:Embeddings__Model="all-minilm:33m-l12-v2-fp16"
dotnet runcd Memorizer
export ConnectionStrings__Storage="Host=localhost;Port=5432;Database=postgmem;Username=postgres;Password=postgres"
export Embeddings__ApiUrl="http://localhost:11434"
export Embeddings__Model="all-minilm:33m-l12-v2-fp16"
dotnet run