vault-link/sync-server
dependabot[bot] e1548b438c
Bump axum from 0.7.9 to 0.8.7 in /sync-server
Bumps [axum](https://github.com/tokio-rs/axum) from 0.7.9 to 0.8.7.
- [Release notes](https://github.com/tokio-rs/axum/releases)
- [Changelog](https://github.com/tokio-rs/axum/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tokio-rs/axum/compare/axum-v0.7.9...axum-v0.8.7)

---
updated-dependencies:
- dependency-name: axum
  dependency-version: 0.8.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-06 22:26:15 +00:00
..
src Update reconcile to 0.8.0 2025-12-06 22:20:31 +00:00
.dockerignore Extract reconcile (#85) 2025-07-13 11:06:42 +01:00
.env Extract reconcile (#85) 2025-07-13 11:06:42 +01:00
build.rs Extract reconcile (#85) 2025-07-13 11:06:42 +01:00
Cargo.lock Bump axum from 0.7.9 to 0.8.7 in /sync-server 2025-12-06 22:26:15 +00:00
Cargo.toml Bump axum from 0.7.9 to 0.8.7 in /sync-server 2025-12-06 22:26:15 +00:00
config-e2e.yml Remove serde_with and use human serde instead 2025-12-06 22:14:20 +00:00
Dockerfile Bump rust from 1.90-slim-trixie to 1.91-slim-trixie in /sync-server (#156) 2025-11-02 17:52:18 +00:00
README.md Add migration docs 2025-10-19 11:53:58 +01:00
rust-toolchain.toml Build server for multiple arch (#106) 2025-08-30 21:50:34 +01:00

Sync server

Creating/resetting the Database for development

rm -rf db.sqlite*
sqlx database create --database-url sqlite://db.sqlite3
sqlx migrate run --source src/app_state/database/migrations --database-url sqlite://db.sqlite3
cargo sqlx prepare --workspace

Updating the DB schema through a migration

sqlx migrate add --source src/app_state/database/migrations <name>
sqlx migrate run --source src/app_state/database/migrations --database-url sqlite://db.sqlite3