The Best Open Source language server for CQL (Cassandra Query Language) ^_^
Install Language Server binary using cargo
cargo install cqllsAdd env variables to your shell config
# Adds cqlls to your path
export PATH="$HOME/.cargo/bin:$PATH"Env variables used by the language server
# Db related
export CQL_LS_DB_URL="172.17.0.2"
export CQL_LS_DB_PASSWD="cassandra"
export CQL_LS_DB_USER="cassandra"
export CQL_LS_TLS_MODE="none|tls"
export CQL_LS_TLS_CA_CERT_FILE=""
# Logging and debugging
export CQL_LS_ENABLE_LOGGING="false"
# Formatting related settings
export CQL_LS_TYPE_ALIGNMENT_OFFSET="7"
# Diagnostics
export CQL_LS_DIAGNOSTICS="false"Tip
Diagnostics are currently available as an experimental feature,
and aren't stable yet ^_^
This project is licensed under the MIT License.