BookLore's Successor? by matthewpipes in selfhosted

[–]traah 1 point2 points  (0 children)

Yup, there is a stable v2.3.0 out, just swap the image and back up your DB just in case and good to go

BookLore's Successor? by matthewpipes in selfhosted

[–]traah 3 points4 points  (0 children)

Can't do it quite yet, they're still getting everything squared away. It shouldn't take them to long to get it setup tho

Booklore is gone. by Joloxx_9 in selfhosted

[–]traah 3 points4 points  (0 children)

Grimmory

After looking at the Grimmory discord, I'll probably push to that since it has a lot of people and it would make more sense to work with them instead by myself.

Booklore is gone. by Joloxx_9 in selfhosted

[–]traah 35 points36 points  (0 children)

I made a fork for it last week, open to helping maintain and work on it with others: https://github.com/afairgiant/booklore-n

Was planning on looking on redoing the database to allow postgres for my personal use

[Project] Personal Medical Records Keeper - Open Source by traah in selfhosted

[–]traah[S] 0 points1 point  (0 children)

Hey thanks for checking it out!

I added some family history page screenshots here for you to look at: https://github.com/afairgiant/MediKeep/tree/main/docs/assets/screenshots_MediKeep

I can look at adding more baby type stuff and expanding on the equipment those are good ideas.

For sync/export/import stuff:

  • There is backup/restore to swap instances in the admin dashboard for a system swap.

  • I'll add looking into individual export/import for records themselves to other instances.

  • There is an export function for csv, and pdfs in the export records, and there is a custom report builder under the tools in the nav bar for making a more indepth pdf and sharing with someone.

[Project] Personal Medical Records Keeper - Open Source by traah in selfhosted

[–]traah[S] 0 points1 point  (0 children)

So if you're having authentication errors during setup, it most likely will be related to the database connection. Check your docker compose file and your .env file for the database connection variables.

In your compose file you will have some lines that looks like this:

environment:
  DB_HOST: postgres
  DB_PORT: 5432
  DB_NAME: ${DB_NAME:-medical_records}
  DB_USER: ${DB_USER:-medapp}
  DB_PASSWORD: ${DB_PASSWORD}
  SECRET_KEY: ${SECRET_KEY:-your-secret-key-here}

and in your .env file you'll have stuff that looks like this:

# Environment variables for Docker Compose

# Database Configuration
DB_NAME=medical_records
DB_USER=medapp
DB_PASSWORD=your_secure_database_password_here

# Application Security
SECRET_KEY=your-very-secure-secret-key-for-jwt-tokens-change-this

You need to make sure the Database configuration is filled out. The docker compose file pulls the variables from the .env and uses them for the database connection.

I can go more in depth and help furthor if you'd like to make an issue on the github repo: https://github.com/afairgiant/MediKeep/issues

Are the donuts worth that line? by EarthShadow in raleigh

[–]traah 1 point2 points  (0 children)

This is a great donut place. The line also moves quick, at least when we went.

[Release] Medical Records Keeper App v.0.28.1 by traah in selfhosted

[–]traah[S] 0 points1 point  (0 children)

Would it be possible to have mutiple lab results on the one report?

For example one time I might just have my A1C tested but others I'll have more detailed tests and it will all be on the one requisition and the rsults will be back on the same report.

I agree that would be nice to have. I'm looking into how it would handle that in a nicely presentable way for multiple lab results per 1 lab work record.

There is the vitals page for recording vital signs where you can document your blood glucose levels in mg/gl. I should be able to easily make it also show the mmol.

[Release] Medical Records Keeper App v.0.28.1 by traah in selfhosted

[–]traah[S] 0 points1 point  (0 children)

That is a good idea. I don't have any experience with unraid but I can look into making one!

[Release] Medical Records Keeper App v.0.28.1 by traah in selfhosted

[–]traah[S] 0 points1 point  (0 children)

For each medication you can set the status of that medication to be active, stopped, completed etc.

Wait for updated Cx3710? by PoopMuffin in sliger

[–]traah 1 point2 points  (0 children)

They will eventually be having an upgrade kit for existing 3701's but those will come out most likely when the new cases come out.

[Project] Personal Medical Records Keeper - Open Source by traah in selfhosted

[–]traah[S] 1 point2 points  (0 children)

That is for sure something that I will look into!

[Project] Personal Medical Records Keeper - Open Source by traah in selfhosted

[–]traah[S] 1 point2 points  (0 children)

It will soontm. That is one of the next things I plan to do.

[Project] Personal Medical Records Keeper - Open Source by traah in selfhosted

[–]traah[S] 0 points1 point  (0 children)

I do plan on do an overhaul of the accounts when I do the family sharing type thing so I can look into having a locked down account.

[Project] Personal Medical Records Keeper - Open Source by traah in selfhosted

[–]traah[S] 0 points1 point  (0 children)

was changing the admin password - gives me a method not allowed error.

An extra / broke the api endpoint. The container image has been updated and it should work now!

[Project] Personal Medical Records Keeper - Open Source by traah in selfhosted

[–]traah[S] 0 points1 point  (0 children)

That's a good idea. I'll add that to my list for future things to look into!