Release v0.1.19
🚀 Text-to-Cypher v0.1.19
Built from commit: b3788f6
Release Type: Stable
📦 Quick Installation:
# One-line install (Linux/macOS)
curl -sSL https://github.com/FalkorDB/text-to-cypher/releases/download/v0.1.19/install.sh | bash
# Or install system-wide
curl -sSL https://github.com/FalkorDB/text-to-cypher/releases/download/v0.1.19/install.sh | bash -s -- --install📋 Manual Downloads:
- Complete Packages (includes binary + templates):
packages/text-to-cypher-linux-x86_64.tar.gzpackages/text-to-cypher-linux-x86_64-musl.tar.gzpackages/text-to-cypher-linux-aarch64.tar.gz
- Checksums:
checksums.txt
� Use in Your Dockerfiles:
# Download and use in your Dockerfile
FROM alpine:latest
RUN apk add --no-cache wget tar && \
wget https://github.com/FalkorDB/text-to-cypher/releases/download/v0.1.19/packages/text-to-cypher-linux-x86_64-musl.tar.gz && \
tar -xzf text-to-cypher-linux-x86_64-musl.tar.gz && \
mv text-to-cypher-linux-x86_64-musl /usr/local/bin/text-to-cypher && \
mv templates /usr/local/share/text-to-cypher-templates && \
rm text-to-cypher-linux-x86_64-musl.tar.gz
ENV TEMPLATES_DIR=/usr/local/share/text-to-cypher-templates
CMD ["text-to-cypher"]