vault-link/sync-server
dependabot[bot] b0ca2d023f
Bump regex from 1.11.1 to 1.12.2 in /sync-server
Bumps [regex](https://github.com/rust-lang/regex) from 1.11.1 to 1.12.2.
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/regex/compare/1.11.1...1.12.2)

---
updated-dependencies:
- dependency-name: regex
  dependency-version: 1.12.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-10-27 06:00:25 +00:00
..
src Add local CLI (#144) 2025-10-21 22:45:47 +01: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 regex from 1.11.1 to 1.12.2 in /sync-server 2025-10-27 06:00:25 +00:00
Cargo.toml Bump regex from 1.11.1 to 1.12.2 in /sync-server 2025-10-27 06:00:25 +00:00
config-e2e.yml Extract reconcile (#85) 2025-07-13 11:06:42 +01:00
Dockerfile Fix folder deletion (#140) 2025-10-20 20:24:35 +01: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