fix clicks cardf colors

This commit is contained in:
2026-05-22 10:40:23 +02:00
parent 2a5056e7ff
commit e85bf2d577
6 changed files with 94 additions and 72 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
# Start Ollama in the background
ollama serve &
# Wait for Ollama server to be ready
echo "Waiting for Ollama server to start..."
while ! ollama list > /dev/null 2>&1; do
sleep 2
done
# Create the MzansiAI model if it doesn't exist
echo "Creating MzansiAI model..."
ollama create mzansiai -f /root/.ollama/Modelfile
# Keep the container running
wait