-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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:[email protected]) 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* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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> |