Compare commits
5 Commits
80f864a1f3
...
1.0.2
Author | SHA1 | Date | |
---|---|---|---|
c42b8b1bda | |||
bdcbe94c97 | |||
caeff985c2 | |||
bed538793d | |||
602f20ad18 |
10
.drone.yml
10
.drone.yml
@ -38,6 +38,7 @@ steps:
|
||||
- cd moneymgr_backend
|
||||
- rustup component add clippy
|
||||
- cargo clippy -- -D warnings
|
||||
- cargo clippy --example api_curl -- -D warnings
|
||||
|
||||
- name: backend_test
|
||||
image: rust
|
||||
@ -51,7 +52,7 @@ steps:
|
||||
- cargo test
|
||||
|
||||
|
||||
- name: backend_compile
|
||||
- name: backend_build
|
||||
image: rust
|
||||
volumes:
|
||||
- name: rust_registry
|
||||
@ -67,15 +68,16 @@ steps:
|
||||
- cd moneymgr_backend
|
||||
- mv /tmp/web_build/dist static
|
||||
- cargo build --release
|
||||
- ls -lah target/release/moneymgr_backend
|
||||
- cp target/release/moneymgr_backend /tmp/release
|
||||
- cargo build --release --example api_curl
|
||||
- ls -lah target/release/moneymgr_backend target/release/examples/api_curl
|
||||
- cp target/release/moneymgr_backend target/release/examples/api_curl /tmp/release
|
||||
|
||||
|
||||
# Release
|
||||
- name: gitea_release
|
||||
image: plugins/gitea-release
|
||||
depends_on:
|
||||
- backend_compile
|
||||
- backend_build
|
||||
when:
|
||||
event:
|
||||
- tag
|
||||
|
@ -7,7 +7,7 @@ edition = "2024"
|
||||
env_logger = "0.11.8"
|
||||
log = "0.4.27"
|
||||
diesel = { version = "2.2.10", features = ["postgres", "r2d2"] }
|
||||
diesel_migrations = "2.1.0"
|
||||
diesel_migrations = "2.2.0"
|
||||
clap = { version = "4.5.38", features = ["env", "derive"] }
|
||||
actix-web = "4.11.0"
|
||||
actix-cors = "0.7.1"
|
||||
|
2
moneymgr_web/package-lock.json
generated
2
moneymgr_web/package-lock.json
generated
@ -36,7 +36,7 @@
|
||||
"@vitejs/plugin-react": "^4.4.1",
|
||||
"eslint": "^9.26.0",
|
||||
"eslint-plugin-react-dom": "^1.49.0",
|
||||
"eslint-plugin-react-hooks": "^5.1.0",
|
||||
"eslint-plugin-react-hooks": "^5.2.0",
|
||||
"eslint-plugin-react-refresh": "^00.4.20",
|
||||
"eslint-plugin-react-x": "^1.49.0",
|
||||
"globals": "^16.1.0",
|
||||
|
@ -38,7 +38,7 @@
|
||||
"@vitejs/plugin-react": "^4.4.1",
|
||||
"eslint": "^9.26.0",
|
||||
"eslint-plugin-react-dom": "^1.49.0",
|
||||
"eslint-plugin-react-hooks": "^5.1.0",
|
||||
"eslint-plugin-react-hooks": "^5.2.0",
|
||||
"eslint-plugin-react-refresh": "^00.4.20",
|
||||
"eslint-plugin-react-x": "^1.49.0",
|
||||
"globals": "^16.1.0",
|
||||
|
Reference in New Issue
Block a user