No description
Find a file
Bianca Fürstenau 58206d41b5 Switch DB crate
2025-03-11 08:00:11 +01:00
assets Something running 2025-02-22 07:09:34 +01:00
capabilities Break build 2025-03-07 16:10:06 +01:00
gen/android/app Rename app 2025-03-11 05:25:14 +01:00
migrations Switch DB crate 2025-03-11 08:00:11 +01:00
src Switch DB crate 2025-03-11 08:00:11 +01:00
.gitignore Ignore secret 2025-03-05 02:04:26 +01:00
build.rs Minimal Leptos setup 2025-02-21 22:30:20 +01:00
Cargo.lock Break build 2025-03-07 16:10:06 +01:00
Cargo.toml Switch DB crate 2025-03-11 08:00:11 +01:00
leptosfmt.toml TOML formatting 2025-03-05 20:48:43 +01:00
README.md Mention cloud_user in README 2025-03-05 23:22:40 +01:00
rust-analyzer.toml Fmt 2025-03-05 20:15:11 +01:00
rustfmt.toml TOML formatting 2025-03-05 20:48:43 +01:00
styles.scss Lotsa Leptos 2025-02-22 16:00:00 +01:00
taplo.toml TOML formatting 2025-03-05 20:48:43 +01:00
Tauri.toml Rename app 2025-03-11 05:25:14 +01:00
trunk.html Refactor a bit 2025-03-05 00:34:23 +01:00
Trunk.toml TOML formatting 2025-03-05 20:48:43 +01:00

Setup

Clone the repository and in the root directory of the repo, execute

cargo tauri icon assets/icon.svg

and write the Nextcloud token into src/server/cloud_user.txt.

Android

To enable android development, additionally execute

rm gen/android/app/build.gradle.kts
NDK_HOME=<path> ANDROID_HOME=<path> cargo tauri android init
git restore gen/android/app/build.gradle.kts

and set up gen/android/keystore.properties, e.g. following https://v2.tauri.app/distribute/sign/android/.

Run

Linux Development

Tauri does not seem to support specifying the binary to be run in a config, so we have to do it on the command line.

cargo tauri dev -- --bin tauri

Android Development

Tauri does not seem to support specifying the Cargo features of the library for mobile in a config, so we have to do it on the command line.

NDK_HOME=<path> ANDROID_HOME=<path> cargo tauri android dev --features tauri