diff options
author | Vika <vika@fireburn.ru> | 2024-07-08 21:51:58 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2024-07-08 21:51:58 +0300 |
commit | ed949a90e108e00776ed9bfafbbabec14df580e1 (patch) | |
tree | 92017e315befb94b4717d5581249b712b552233f | |
parent | 8338258fda46eac8dda0380eeffba2ef42b76465 (diff) | |
download | kittybox-ed949a90e108e00776ed9bfafbbabec14df580e1.tar.zst |
.envrc: add DATABASE_URL for `cargo test` to work
-rw-r--r-- | .envrc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.envrc b/.envrc index a567465..31d3b45 100644 --- a/.envrc +++ b/.envrc @@ -11,4 +11,6 @@ export BACKEND_URI="postgres://localhost?dbname=kittybox&host=/run/postgresql" export JOB_QUEUE_URI="postgres://localhost?dbname=kittybox&host=/run/postgresql" export BLOBSTORE_URI=file://./media-store export AUTH_STORE_URI=file://./auth-store -export COOKIE_SECRET=1234567890abcdefghijklmnopqrstuvwxyz \ No newline at end of file +export COOKIE_SECRET=1234567890abcdefghijklmnopqrstuvwxyz +# Add DATABASE_URL for `cargo test` invocations +export DATABASE_URL="postgres://localhost?dbname=kittybox&host=/run/postgresql" \ No newline at end of file |