docs: Add opex and funding page

This commit is contained in:
Maxime Cannoodt
2022-09-28 21:03:44 +02:00
parent 73a4d77c66
commit 8d8cac4dbd
3 changed files with 37 additions and 0 deletions

View File

@@ -23,5 +23,7 @@
>🐛 Report bug</a
>
<span>-</span>
<a class="underline" href="/funding">Expenses & funding</a>
<span>-</span>
<a class="underline" href="https://www.buymeacoffee.com/mcndt">☕ Buy me a coffee</a>
</footer>

View File

@@ -0,0 +1,25 @@
# Operational Expenses and Funding 💰
## Operational Expenses
I architected the serverside code to be as light and portable as possible. Currently, it runs on a VPS I rent for about **7$/month**. This is currently the only operational expense for Noteshare.space.
The storage requirements for hosting encrypted text data are incredible small; at the time of writing (28 September, 2022), Noteshare is storing **700 notes in a little over 4MB**.
### Future expenses: hosting file attachments
For those who have read [the roadmap](/roadmap), I am working on supporting embedded images and file attachments in a future update. As you can imagine, this greatly increases the storage requirements, as just one attachement has a size in the order of megabytes.
As I develop this feature, I am still deciding on how I will fund this: community donors, tiered access, ... If you have any suggestions, feel free to reach out to me via [email](mailto:contact@noteshare.space) or the [community Discord](https://discord.gg/y3HqyGeABK).
## Funding
I already rented this VPS for other purposes, so I haven no problem paying out of pocket for hosting and you can expect the service to be available
If you wish to financially support me and the development of this plugin and service, you can send donations via my [*Buy me a coffee*-profile](https://www.buymeacoffee.com/mcndt).
## Self-hosting
If you are still worried about relying on me for keeping Noteshare up and running, it is an option to host your own instance of Noteshare. You can find the source code, as well as a `docker-compose.yml` file to get you up and running on the [Noteshare GitHub repo](https://github.com/mcndt/Noteshare.space).
*Last updated: 2022-09-28*

View File

@@ -0,0 +1,10 @@
<script context="module" lang="ts">
export const prerender = true;
// @ts-expect-error - Markdown files are not recognized by Svelte
import { toc, html } from './funding.md';
</script>
<div class="md:py-8 prose prose-md max-w-3xl dark:prose-invert">
{@html html}
</div>