Build Laravel 13 ticket assistant with Docker, Livewire admin, and helpdesk scraper command

This commit is contained in:
SitiWeb
2026-04-29 13:11:39 +02:00
parent 141a1a3c9b
commit 3c4572bb12
58 changed files with 9377 additions and 455 deletions

29
.env.docker.example Normal file
View File

@@ -0,0 +1,29 @@
APP_NAME=TicketAssistant
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_URL=http://localhost:8090
LOG_CHANNEL=stack
LOG_LEVEL=debug
DB_CONNECTION=pgsql
DB_HOST=postgres
DB_PORT=5432
DB_DATABASE=ticket_assistant
DB_USERNAME=postgres
DB_PASSWORD=postgres
QUEUE_CONNECTION=database
CACHE_STORE=file
# External Ollama server in your network
OLLAMA_BASE_URL=http://192.168.1.50:11434
OLLAMA_EMBED_MODEL=nomic-embed-text
OLLAMA_CHAT_MODEL=llama3
OLLAMA_TIMEOUT=30
EMBEDDING_DIMENSION=768
QUEUE_EMBEDDINGS=false
DB_SSLMODE=disable