Update and document scripts

This commit is contained in:
Joscha 2023-08-05 16:17:38 +02:00
parent ca463b023e
commit 5d62a2891c
3 changed files with 39 additions and 5 deletions

View file

@ -1,6 +1,6 @@
# tablejohn # tablejohn
A tool to run benchmarks for a git repo and display their results. Run benchmarks against commits in a git repo and present their results.
## Building from source ## Building from source
@ -8,14 +8,44 @@ The following tools are required:
- `cargo` and `rustc` (best installed via [rustup](https://rustup.rs/)) - `cargo` and `rustc` (best installed via [rustup](https://rustup.rs/))
- `tsc`, the [typescript](https://www.typescriptlang.org/) compiler - `tsc`, the [typescript](https://www.typescriptlang.org/) compiler
For developing, the following tool is additionally required:
- `sqlx`, the [CLI of the sqlx library](https://github.com/launchbadge/sqlx/blob/main/sqlx-cli/README.md)
Once you have installed these tools, run `cargo build --release`. Once you have installed these tools, run `cargo build --release`.
The compiled binary will be located at `target/release/tablejohn`. The compiled binary will be located at `target/release/tablejohn`.
It contains everything needed to run tablejohn. It contains everything needed to run tablejohn.
No additional files are required. No additional files are required.
## Developing
I recommend using VSCode and rust-analyzer in combination with the tools
mentioned in the previous section. However, some parts of the code base require
additional tools and setup.
### Changing SQL queries with sqlx
If you want to change any of the SQL queries, you will need to install `sqlx`,
the [CLI of the sqlx library][sqlx]. The sqlx library can connect to a dev
database at compile-time to verify SQL queries defined via the `query*` macro
family. This is useful during development as it gives immediate feedback on
mistakes in your queries. However, it requires a bit of setup. During normal
compilation with `cargo build`, the cached query analyses in `.sqlite/` are used
instead of the dev database. This way, the dev database and `sqlx` tool is not
required when you're just building the project.
First, run `./meta/setup`. This creates or updates the dev database at
`target/dev.db`. You will need to rerun this command whenever you change or add
a migration.
Then, if you don't use VSCode, configure your `rust-analyzer` to run
`cargo check` with the environment variable `SQLX_OFFLINE=false` using the
[`rust-analyzer.check.extraEnv` option][ra-opt]. This signals to sqlx that it
should use the dev database instead of `.sqlx/`, but only in your IDE.
**Important:** Before committing any changed SQL query, you **must** run
`./meta/update_sqlx_queries`. This will recreate your dev database (just like
`./meta/setup`) and then update the files in `.sqlx/`.
[sqlx]: https://github.com/launchbadge/sqlx/blob/main/sqlx-cli/README.md
[ra-opt]: https://rust-analyzer.github.io/manual.html#rust-analyzer.check.extraEnv
## Design notes ## Design notes
- A tablejohn instance tracks exactly one git repository. - A tablejohn instance tracks exactly one git repository.

4
meta/setup Executable file
View file

@ -0,0 +1,4 @@
#!/usr/bin/env bash
mkdir -p target/
cargo sqlx database drop -y
cargo sqlx database setup

View file

@ -1,5 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
export DATABASE_URL=sqlite:target/dev.db mkdir -p target/
cargo sqlx database drop -y cargo sqlx database drop -y
cargo sqlx database setup cargo sqlx database setup
cargo sqlx prepare cargo sqlx prepare