Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1#!/bin/bash 2 3set -e 4 5# Install sqlx-cli if needed 6[[ "$(sqlx --version)" == "sqlx-cli 0.5.5" ]] || cargo install sqlx-cli --version 0.5.5 7 8# Export contents of .env.toml 9eval "$(cargo run --bin dotenv)" 10 11# Run sqlx command 12sqlx $@