Grocy is a web-based self-hosted groceries & household management solution for your home.
There are two dockers repo recommended by Grocy:
(while I don't feel the need for such an app, maybe some people would like it )
Grocy is a web-based self-hosted groceries & household management solution for your home.
There are two dockers repo recommended by Grocy:
(while I don't feel the need for such an app, maybe some people would like it )
Language Tool is a Grammar, Style and Spell Checker. LanguageTool checks your writing in more than 20 languages.
See: https://languagetool.org/
You can run it from your server directly, instructions: https://dev.languagetool.org/http-server
And there are two docker implementations listed in their doc:
From the notion-like thread, "Twake covers all of your organizational needs through a single platform".
Integrates in a single interface:
It was a startup with a closed-source product which was bought by Linagora (open source company providing dev for french gov, big companies, etc.).
I asked on their chat, and they plan to integrate it to open paas and keep a standalone version in parallel.
I'm pretty excited by this, it looks really good and the fact it's supported by an open source shop is even better.
Install guide (docker compose): https://github.com/TwakeApp/Twake/blob/master/documentation/INSTALL.md
"Code-server is VS Code running on a remote server, accessible through the browser."
https://github.com/codercom/code-server
Try it out
docker run -p 127.0.0.1:8443:8443 -v "${PWD}:/root/project" codercom/code-server code-server --allow-http --no-auth
"Leantime is an open source project management system for small teams and startups."
Website: leantime.io
Docker: https://github.com/Leantime/docker-leantime
A community fork has been gathering steam and is being actively developed:
https://github.com/subspacecommunity/subspace
Might be worth revisiting for potential packagers.
Grow your contact lists, use custom data, and send your campaigns with Keila.
Proudly Open Source, made in Germany and hosted in the EU![]()
Website: https://www.keila.io/
Github: https://github.com/pentacent/keila
This purpose to be a Malchimp replacement, features:
WIP:
The value of Cloudron and why we pay a license is the appstore. So my naive person think that changing the platform code back to free software wouldn't affect negatively Cloudron business model.
It seems to me part of the reasoning to the license change was there wasn't much contribution to the platform anyway. I believe the same argument can be used to change it back to free software.
I'm sad not to be able to recommend Cloudron as the best open source paas since the license change.
It has in effect changed my relation to the project, from an invested advocate to a simple client.
Moving Cloudron back to free software would bring much needed positivity to 2020.
https://garagehq.deuxfleurs.fr/
Alternative to Minio, specially made for selfhosting setup.
See: https://garagehq.deuxfleurs.fr/blog/2022-introducing-garage/
Code: https://git.deuxfleurs.fr/Deuxfleurs/garage
@atridad Uptime is only an aspect of it. Self hosted email system is resilient enough to allow for downtime up to a week.
I'm much more fearful of getting cut by an email provide: I have some protonmail email that was cut for an unknown reason, and let's not talk about Google horror stories where falling foul of any policy in any of their service will cut you off without appeal.
The key is to have control about the domain name, so you can reroute wherever you want at any point in time.
When I got to list emails for a domain, the list of mailboxes are slow to display.
Now then maybe the slowness is mainly due to my server, but I also noticed looking at my browser network monitor that all domains mailboxes are fetched when you load a specific domai Mailboxes like https://my.domain.com/#/email/domain.com/mailboxes
.
This doesn't help, for sure. Is it possible to load only the data relevant to the domain displayed?
@girish Maybe you could add those steps to the help section?
@girish I was looking into adding extensions for Directus, more specifically this one: https://github.com/dimitrov-adrian/directus-extension-masked-interface
Do you think it will work or does using npm install
means it's always a system-wide installation?
@robi With the standalone version, my understanding is that you don't need to point your browser to it?
I think even without the stats, it could be interesting to publish this app to make it possile for any of us to help against censorship.
There's a way to make the logs more verbose, if you want to check that soething is happening:
You can get more verbose output by running the proxy with -verbose, if you are using docker you can do:
docker run --network host thetorproject/snowflake-proxy:latest -verbose
Here are the instructions for server install: https://community.torproject.org/relay/setup/snowflake/standalone/
@bushido There's apparently a PDF reader, but I've not used it.
There's also a browser extension: https://github.com/zadam/trilium/wiki/Web-clipper
@timconsidine I don't use it much on mobile. But otherwise, pin it and use it as a webapp. (I'm also using the webapp on desktop actually through Ferdium)
Here's the relevant function, line 191 is the second exception:
function migrate() : bool {
if ($this->get_version() == -1) {
try {
$this->migrate_to(0);
} catch (PDOException $e) {
user_error("Failed to load base schema for {$this->migrations_table}: " . $e->getMessage(), E_USER_WARNING);
return false;
}
}
for ($i = $this->get_version() + 1; $i <= $this->get_max_version(); $i++) {
try {
$this->migrate_to($i);
} catch (PDOException $e) {
user_error("Failed to apply migration ${i} for {$this->migrations_table}: " . $e->getMessage(), E_USER_WARNING);
return false;
//throw $e;
}
}
return !$this->is_migration_needed();
}