Skip to content

Commit

Permalink
Merge pull request #10 from roymckenzie/synced-store
Browse files Browse the repository at this point in the history
Synced store
  • Loading branch information
roymckenzie committed Sep 29, 2023
2 parents 82c70bf + 328b950 commit b8ed9b8
Show file tree
Hide file tree
Showing 20 changed files with 695 additions and 198 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.0] - 2023-09-29

### Added
- syncedStore, yjs, y-indexeddb, y-webrtc libraries

### Changed
- CRDT enabled through syncedStore and Yjs
- Changed storage provider from localstorage to indexedDB
- HealthRecord type now has an ID

### Fixed


## [0.1.8] - 2023-09-22

### Added
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Record, track, and visualize your personal health data.

## About
HealthRecord allows individuals to record, track and visualize vital measurements related to their personal health. HealthRecord data is stored in the browser's `localStorage` for basic privacy. HealthRecord also supports tracking multiple people in one HealthRecord. HealthRecord aims to be [local-first software](https://www.inkandswitch.com/local-first/).
HealthRecord allows individuals to record, track and visualize vital measurements related to their personal health. HealthRecord data is stored in the browser for basic privacy using CRDT ([Conflict-free Replicated Data Type](https://crdt.tech/)) architecture. HealthRecord also supports tracking multiple people in one HealthRecord. HealthRecord aims to be [local-first software](https://www.inkandswitch.com/local-first/).

See a deployment at [healthrecord.pages.dev](https://healthrecord.pages.dev/)

Expand All @@ -19,6 +19,7 @@ See a deployment at [healthrecord.pages.dev](https://healthrecord.pages.dev/)
* Identify trends with graph visualizations
* Download and open passphrase encrypted data
* Installs as PWA from browser
* Uses CRDT ([Conflict-free Replicated Data Type](https://crdt.tech/)) architecture.

## Getting Started
To get a local copy up and running follow these simple steps.
Expand Down Expand Up @@ -46,7 +47,6 @@ Visit [localhost:5173](http://localhost:5173) in your browser.
## Roadmap
- [ ] Track medications
- [ ] AI insights and vitals suggestions
- [ ] Implement [Automerge](https://automerge.org/)
- [ ] Add cloud hosting option

## Contributing
Expand Down
Loading

0 comments on commit b8ed9b8

Please sign in to comment.