Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Deploy Hystersis on your own infrastructure
git clone https://github.com/Himan-D/agent-memory.git cd agent-memory # Create .env file cp .env.production.example .env # Edit .env with your configuration # Start services docker-compose up -d
version: '3.8' services: api: build: . ports: - "8080:8080" environment: - NEO4J_URI=bolt://neo4j:7687 - QDRANT_URL=http://qdrant:6333 depends_on: - neo4j - qdrant neo4j: image: neo4j:5 ports: - "7474:7474" - "7687:7687" qdrant: image: qdrant/qdrant ports: - "6333:6333"
# Environment variables NEO4J_URI=bolt://localhost:7687 NEO4J_USER=neo4j NEO4J_PASSWORD=your-password QDRANT_URL=http://localhost:6333 HTTP_PORT=8080 AUTH_ENABLED=true
git pull origin main docker-compose build docker-compose up -d