Skip to content

Commit

Permalink
(feat): use tauri command to interacte with Sqlite database
Browse files Browse the repository at this point in the history
  • Loading branch information
rakotoson committed Jan 21, 2023
1 parent 8e937c6 commit 2a112e3
Show file tree
Hide file tree
Showing 154 changed files with 4,434 additions and 2,217 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,5 @@ testem.log
# System files
.DS_Store
Thumbs.db

.env
5 changes: 0 additions & 5 deletions UPDATE_LOG.md

This file was deleted.

10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@
"tauri:serve": "tauri dev",
"tauri:bundle": "tauri build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"updater": "node scripts/updater.mjs",
"release": "node scripts/release.mjs"
"test": "ng test"
},
"private": true,
"dependencies": {
Expand All @@ -30,12 +28,18 @@
"@angular/platform-browser": "^15.0.3",
"@angular/platform-browser-dynamic": "^15.0.3",
"@angular/router": "^15.0.3",
"@fullcalendar/angular": "^6.0.0",
"@fullcalendar/core": "^6.0.0",
"@fullcalendar/daygrid": "^6.0.0",
"@fullcalendar/list": "^6.0.0",
"@fullcalendar/timegrid": "^6.0.0",
"@ng-select/ng-select": "^10.0.1",
"@ngrx/effects": "^15.0.0",
"@ngrx/entity": "^15.0.0",
"@ngrx/store": "^15.0.0",
"@ngrx/store-devtools": "^15.0.0",
"@tauri-apps/api": "^1.2.0",
"date-fns": "^2.29.3",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
Expand Down
107 changes: 0 additions & 107 deletions scripts/release.mjs

This file was deleted.

44 changes: 0 additions & 44 deletions scripts/updatelog.mjs

This file was deleted.

107 changes: 0 additions & 107 deletions scripts/updater.mjs

This file was deleted.

1 change: 1 addition & 0 deletions src-tauri/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Generated by Cargo
# will have compiled files and executables
/target/
store.db
1 change: 1 addition & 0 deletions src-tauri/.taurignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
store.db
Loading

0 comments on commit 2a112e3

Please sign in to comment.