mirror of
https://github.com/LemmyNet/lemmy.git
synced 2026-04-30 05:20:12 -05:00
9ccd647e02
* Fixing docker_update.sh script to not add context. Use docker build from a higher level to not load massive context. * Adding a custom postgresql for testing. * Fixing docker update * Fixing dir. * Fix rust log * Add bash / shell file format checking. * Adding shfmt package. * Running bash format. * Fixing bash fmt. * Fixing bash fmt 2. * Adding pgtune note.
7 lines
136 B
Bash
Executable File
7 lines
136 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
dest=${1-config/defaults.hjson}
|
|
|
|
cargo run --manifest-path crates/utils/Cargo.toml --features full >"$dest"
|