Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/irdcat/progress
App for analyzing progress in strength training
https://github.com/irdcat/progress
javascript rust sqlite3 svelte3 tailwindcss tauri typescript
Last synced: 3 months ago
JSON representation
App for analyzing progress in strength training
- Host: GitHub
- URL: https://github.com/irdcat/progress
- Owner: irdcat
- License: mit
- Archived: true
- Created: 2022-05-29T01:41:56.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-07-12T00:09:53.000Z (over 1 year ago)
- Last Synced: 2024-09-18T14:55:15.437Z (3 months ago)
- Topics: javascript, rust, sqlite3, svelte3, tailwindcss, tauri, typescript
- Language: Svelte
- Homepage:
- Size: 1.72 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Progress
Desktop app for analyzing progress in strength training. Whole setup along with database is serverless. Database is kept in single file (backed by SQLite3).
![Screen from app](images/training-details.png)
## Stuff used in the project
Backend (Rust)
- Tauri - Used for building desktop app with Web UI
- rusqlite - Sqlite3 bindings for rust
- simple_logger - Simple logger implementation for Rust
- uuid - Utility library for generation of UUID's v4Frontend (JavaScript, TypeScript)
- Svelte - Framework for building web application UI
- svelte-spa-router - Used for declarative routing instead of file based router of SvelteKit
- svelte-tiny-linked-charts - Used for creating simple bar charts that can be linked together
- tailwind-css - CSS framework to avoid writing css code
- DaisyUI - Tailwind CSS components
- qs - Utility library for parsing query string## Dev setup
### Prequisites
- Rust (https://www.rust-lang.org/)
- Node (https://nodejs.org/en/)
- npm#### Windows prequisites
- Visual Studio C++ Build Tools
- Windows 10 SDK
- MSVC v143 - VS 2022 C++
- WebView2 (can be obtained from Evergreen Bootstrapper https://developer.microsoft.com/en-us/microsoft-edge/webview2/#download-section)All of above (except WebView2) can be installed using Microsoft C++ Build Tools (https://visualstudio.microsoft.com/pl/visual-cpp-build-tools/)
### Setting up project
First install NPM dependencies
```bash
npm install
```Run tauri application in dev mode. Command will open the application window when everything will be fine.
```
npm run tauri dev
```