Am I able to import notes from evernote or upnote? I switched to upnote recently but got a warning from them about not supporting grapheneos for much longer
Selfhosted
A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.
Rules:
-
Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.
-
No spam posting.
-
Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.
-
Don't duplicate the full text of your blog or github here. Just post the link for folks to click.
-
Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).
-
No trolling.
-
No low-effort posts. This is subjective and will largely be determined by the community member reports.
Resources:
- selfh.st Newsletter and index of selfhosted software and apps
- awesome-selfhosted software
- awesome-sysadmin resources
- Self-Hosted Podcast from Jupiter Broadcasting
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
If this supported daylio (and the mood tracking that daylio uses), I would immediately switch.
Daylio has been requested before (and I just saw it has 4 upvote, so I am guessing its pretty popular ?) https://github.com/journiv/journiv-app/issues/58
Daylio kind of mood tracking i.e. extensive with custom mood and with activities will come soon.
Import from Daylio is possible although I am not sure how much the demand is. The github repo has lot of import from request from different apps and import does take a lot of time to build as most apps have obscure formats and nuances to deal with or on purpose don't support simple portable formats to lock down user data. For example see the circus one has to go through to get meaning from Daylio export: https://www.joelotter.com/posts/2022/01/daylio/
Oh hell yeah on the Day One import! I’ve got 9 years of entries I want to take out of that ecosystem. I wish I wasn’t traveling for work, otherwise I’d get it installed and take it for a spin. Thanks for all the hard work!
Congrats on liberating your memories and thoughts. I look forward to your feedback.
I've been working on a journaling app for a couple months that uses CalDAV for syncing. I found out there's a underutilized part of the VCALENDAR component for journaling and couldn't find a good journaling app with sync that supported it. Got as far as a compotent TUI app, snyc, journal management, wrote a text editor. I am not a developer, btw, I'm a datacenter engineer. I've been working on edge-cases and dragging my feet on moving on to a GUI. But this honestly sounds so much better. And if there will be mobile apps, this is definitely going in my stack.
That sounds like a fun project. I did initially do some research in VJOURNAL but found it rather limiting for all the stuff I want to build in Journiv. I wrote a blogpost about it earlier: https://www.journiv.com/blog/why-journiv-doesnt-use-caldav The application is cross platform so it work as PWA and you can use it as mobile devices as PWA without any issues. Many Journiv users are already doing so. Native mobile apps are ready and will be coming soon once the project becomes sustainable to cover the development cost and expenses around it: https://github.com/orgs/journiv/discussions/184#discussioncomment-15180557
Is Journiv still having issues with export? I couldn't get it to work (tried following all the stuff I could find about the export issues and folder permissions) - so I gave up. A shame because I like the app.
Can you clarify the export issue you are seeing or please report it on github? The export/import has been working well. I am guessing you might have tried it out with quickstart docker compose or Synology NAS guide from mariaus hosting which does not have complete docker compose i.e. it is missing celery-workers container which are needed to create import/export jobs and run them async. Couple of users tripped on this so I will be improving the error message to specifically say they need to run complete stack right not the error message is very cryptic low level detail which is hard for anyone to understand what went wrong.
Thanks. I took another look at your documentation and decided to re-install everything. You're right, I'd used the simple "test" compose script from your site. After a little trial and error, I got everything working properly with this:
services:
redis:
image: redis:7-alpine
container_name: journiv-redis
restart: unless-stopped
volumes:
- /mnt/dietpi_userdata/docker-data/journiv/redis-data:/data
command: redis-server --appendonly yes
journiv:
image: swalabtech/journiv-app:latest
container_name: journiv
ports:
- "8111:8000"
environment:
- SECRET_KEY=XXX
- DOMAIN_NAME=XXX
- CELERY_BROKER_URL=redis://redis:6379/0
- CELERY_RESULT_BACKEND=redis://redis:6379/0
- REDIS_URL=redis://redis:6379/0
volumes:
- /mnt/dietpi_userdata/docker-data/journiv/data:/data
restart: unless-stopped
depends_on:
- redis
celery-worker:
image: swalabtech/journiv-app:latest
container_name: journiv-celery-worker
entrypoint: []
command: ["celery", "-A", "app.core.celery_app", "worker", "--loglevel=info"]
environment:
- SECRET_KEY=XXX
- DOMAIN_NAME=XXX
- CELERY_BROKER_URL=redis://redis:6379/0
- CELERY_RESULT_BACKEND=redis://redis:6379/0
- REDIS_URL=redis://redis:6379/0
volumes:
- /mnt/dietpi_userdata/docker-data/journiv/data:/data
restart: unless-stopped
depends_on:
- redis
- journiv
Exports are working!