Merge pull request 'setup-tauri' (#2) from setup-tauri into master
Reviewed-on: finwise/finewise#2
This commit was merged in pull request #2.
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -25,3 +25,6 @@ dist-ssr
|
||||
|
||||
#pnpm
|
||||
.pnpm-store
|
||||
|
||||
# target
|
||||
target/
|
||||
|
||||
19
justfile
19
justfile
@@ -1,4 +1,21 @@
|
||||
# justfile: convenience recipes for development
|
||||
default:
|
||||
@just --list
|
||||
|
||||
init:
|
||||
cargo install sea-orm-cli@^2.0.0-rc
|
||||
|
||||
db-migrate:
|
||||
cd crates && \
|
||||
rm temp.db || true && \
|
||||
touch temp.db && \
|
||||
sea-orm-cli migrate -u sqlite://temp.db && \
|
||||
sea-orm-cli generate entity \
|
||||
-u sqlite://temp.db \
|
||||
-o ../src-tauri/src/db/entities \
|
||||
--with-serde both \
|
||||
--date-time-crate chrono
|
||||
|
||||
rm crates/temp.db
|
||||
|
||||
start-vnc:
|
||||
@echo "Run the manual VNC start script"
|
||||
|
||||
@@ -22,6 +22,14 @@
|
||||
}
|
||||
},
|
||||
"bundle": {
|
||||
"android": {
|
||||
"autoIncrementVersionCode": false,
|
||||
"minSdkVersion": 24
|
||||
},
|
||||
"iOS": {
|
||||
"minimumSystemVersion": "14.0"
|
||||
},
|
||||
"category": "Finance",
|
||||
"active": true,
|
||||
"targets": "all",
|
||||
"icon": [
|
||||
@@ -32,4 +40,4 @@
|
||||
"icons/icon.ico"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user