Bumps the cargo group with 1 update in the /sync-server directory: [rsa](https://github.com/RustCrypto/RSA). Updates `rsa` from 0.9.7 to 0.9.10 - [Changelog](https://github.com/RustCrypto/RSA/blob/v0.9.10/CHANGELOG.md) - [Commits](https://github.com/RustCrypto/RSA/compare/v0.9.7...v0.9.10) --- updated-dependencies: - dependency-name: rsa dependency-version: 0.9.10 dependency-type: indirect dependency-group: cargo ... Signed-off-by: dependabot[bot] <support@github.com> |
||
|---|---|---|
| .. | ||
| src | ||
| .dockerignore | ||
| .env | ||
| build.rs | ||
| Cargo.lock | ||
| Cargo.toml | ||
| config-e2e.yml | ||
| Dockerfile | ||
| README.md | ||
| rust-toolchain.toml | ||
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