Jirafeau
Upload a file, get a unique download link and a separate delete link - Jirafeau has done exactly this one thing since 2008. It is plain PHP with no database, no mail server, no JavaScript framework, and no external dependencies - files and metadata live on the filesystem, which is why it runs on nearly anything and why it has outlasted most of its imitators. Uploads use the HTML5 file API, so PHP's post_max_size ceiling does not constrain file size, with live progress showing speed, percentage, and time remaining. Every upload takes options: expiration from one minute to a year to unlimited, self-destruct after first download, and password protection with configurable policy - passwords can be optional, required, or server-generated with complexity rules. Server-side encryption (modern builds use XChaCha20-Poly1305) stores files encrypted at rest with the decrypt key embedded only in the download URL, never on the server, so a compromised host cannot read the contents. Unencrypted deployments get file-level deduplication - identical files stored once with multiple links. Upload access can be gated by password lists or IP allowlists, a small admin panel manages stored files, and a CLI cleanup script handles expired files via cron. Recipients can preview supported files in-browser.
Photoview
Snap-happy shutterbugs, rejoice! Photoview is like a personal butler for your pixels, smartly sorting your snapshots and vids into a swanky digital gallery. Glide through gigabytes of glossy high-res memories with the grace of a gazelle. It's like having a psychic librarian who knows exactly where every photo and video is shelved, thanks to its magical sync with your file system. Wave goodbye to manual updates; this clever curation companion refreshes your collection as you add new moments to your montage. Fancy a bit of privacy? No problemo! Each user gets their own secret stash of media, locked down tighter than a drum with usernames and passwords. Want to flaunt your latest landscape shot or adorable kitten video? Share away with links that are as public or as hush-hush as you like. Photoview's got a knack for nosing out EXIF metadata, so you can see the 'who, what, when, and where' of every image, and even pin them to a map like a globetrotting detective. On the move? The iOS mobile version lets you peek at your portfolio on-the-fly. From RAW riddles to video voodoo, Photoview handles it all, dishing out thumbnails and web-optimized videos with the ease of a master chef. All this, hosted on RepoCloud, where the cost is as tiny as the thumbnails it creates, but the value is as vast as your ever-growing gallery of life's moments.
HumHub
Workplace and Yammer's pattern on your own server, with GDPR compliance by construction rather than contract: HumHub is an open-source enterprise social network from Germany. Built in PHP on Yii2, it organizes everything around four concepts. Users get rich profiles with follows and interactions. Spaces are the structural unit - rooms for departments, projects, events, or clubs, with per-Space permissions, notification settings, and email summaries, and operators can auto-map users into the right Spaces. Content covers posts, wiki pages, photos and video, events, and tasks, with multi-level comments, versioning, archiving, moderation reporting, and filterable full-text search across everything. Modules make it a platform: roughly 80 install-and-activate extensions including Calendar, Wiki, Polls, Tasks, Gallery, News, direct-message Mail, OnlyOffice document editing, Advanced LDAP, SAML and JWT SSO, a RESTful API, mass user import, Translation Manager, and a Theme Builder with custom pages - every one optional and toggleable at runtime. That module economy is why HumHub serves such varied deployments: corporate intranets, city governments, universities, political parties, and nonprofits all configure the same core differently. Requirements are a plain LAMP stack - PHP 8.1+ and MySQL/MariaDB - making it one of the easiest community platforms to operate long-term.
Minecraft Server
Get ready to craft, mine, and host like a pro with the itzg/minecraft-server app! This digital wizardry ensures your Minecraft escapades are never behind the times by magically summoning the latest stable version of the Minecraft server at launch. Want to be a version virtuoso? No problemo! You can pick your potion, be it a specific release or the freshest snapshot, and wield the power to tailor your pixelated playground. Console knights, mobile adventurers, and Windows warriors, rejoice! There's a Bedrock Server with your name on it for that buttery-smooth blocky bliss. And because we're not about that 'complicated' life, the classic port 25565 is ready to roll out the red carpet directly to your host machine. Host your blocky realms on RepoCloud, where the cost is as tiny as a block of dirt, but the fun is as big as a mountain biome!
Mstream
"The easiest music streaming server available" is mStream's own billing, and the claim holds up: a lightweight Node.js app that turns a folder of audio files into a private streaming service in minutes, no external database required. Its filesystem-based design is the clever part - the API mirrors your folder structure, so you can browse and play music immediately, before any library scan finishes, and your organization on disk is your organization in the app. It streams flac, mp3, wav, ogg, opus, aac, and m4a, which matters to the audiophile crowd: FLAC plays uncompressed, bit-perfect, with gapless playback for live albums and continuous mixes. The web player runs anywhere a browser does and packs personality - a Milkdrop-style visualizer (Butterchurn), playlist sharing via links, and drag-and-drop uploads straight through the file explorer. Native iOS and Android apps add the feature streaming subscriptions can't match: sync your collection to your phone for true offline playback of music you own. Multi-user support assigns separate directories and permissions per account. Resource usage is famously light - mStream is tested on multi-terabyte libraries and runs happily on a Raspberry Pi, so a small RepoCloud instance serves a lifetime's collection. GPL-licensed, with zero listening-habit telemetry.
PsiTransfer
Upload files, get a share link, let it expire: PsiTransfer is a self-hosted WeTransfer with no accounts, no logins, and no third-party cloud with size caps and metadata harvesting. The engineering focus is large files over imperfect networks. Uploads use the tus.io resumable protocol, so a dropped connection on a multi-gigabyte video resumes exactly where it stopped once you're back online; downloads support HTTP range headers for the same resilience, and everything streams, so file size is bounded by your disk rather than memory. Files organize into upload buckets with retention you control: expire after a set time (up to weeks) or after a one-time download, with automatic cleanup when links lapse. Recipients need nothing installed - they open the link, preview files in modal views, and grab everything as a zip or tar.gz archive with one click. Buckets can be password-protected (AES-encrypted download lists), and security-through-obscurity is done properly: bucket URLs use hashed UUID tokens and stored filenames are replaced with UUIDs. An optional admin page (enabled by setting an admin password) lists bucket information and storage. The Vue.js frontend ships under 100 KB gzipped and is fully responsive. Honest caveat from the author: no end-to-end payload encryption yet. BSD-licensed, Docker-ready.
pgweb
Inspect a PostgreSQL database right now, without installing pgAdmin or exposing Postgres to the internet - pgweb answers that recurring need. It's a Go application from Dan Sosedoff, a decade in development, shipped as a single statically-linked binary with zero dependencies - the Docker image is essentially just the executable - that puts a clean browser UI in front of any PostgreSQL 9.1+ server. Connect via URL string or host/port credentials, and browse tables, views, and sequences from the sidebar; selecting a table shows its rows immediately alongside tabs for structure, indexes, and constraints. The Query tab executes arbitrary SQL with query history, and the Explain Query button renders the query plan - estimated cost, row counts, execution strategy - which makes pgweb a quick performance-triage tool, not just a browser. Results and entire tables export to CSV, JSON, or XML in a click. Connectivity is more flexible than its size suggests: native SSH tunneling (password or key) reaches databases behind firewalls, server bookmarks make switching instances instant, and an optional multi-session mode handles several databases concurrently. For a RepoCloud stack full of Postgres-backed apps, one pgweb instance is the universal inspection hatch. MIT-licensed, actively maintained.
Zipline
ShareX and file uploads, next generation: Zipline is a Node.js/React/PostgreSQL server that turns screenshot sharing and file hosting into something you run yourself instead of renting from Imgur or a paid image host. The core workflow is built around ShareX: generate an .sxcu config from your account settings, import it, and every screenshot or clipboard capture uploads to your domain with a short link copied automatically. Uploads accept any file type, organized with folders and tags, with token-protected uploading, optional password protection, view-limited auto-deletion, image compression, metadata stripping, automatic video thumbnails, and chunked/partial uploads for large files. File URLs come in configurable formats - UUIDs, dates, random alphanumerics, original names, even zero-width spaces. A built-in URL shortener adds vanity slugs, passwords, view caps, and custom domains. Discord embeds are first-class: customize OG metadata titles, descriptions, and colors so links unfurl exactly how you want, and fire fully customizable Discord or HTTP webhooks on each upload. Authentication is serious: OAuth2 (Discord, GitHub, Google, OIDC), TOTP two-factor, and passkeys, with invite-based registration and per-user quotas for shared instances. Storage targets local disk or any S3-compatible backend, a full REST API automates everything, and custom themes plus a PWA round out the experience.
Filerun
Imagine a digital treasure chest where you're the pirate king, and that's FileRun for you! It's your very own, ultra-private digital locker, akin to a Google Drive that's sworn an oath of loyalty only to you. With FileRun, you can summon your files from any server with a snap of your fingers – no importing shenanigans or scanning sorcery required. It's like having a teleportation portal for your data with FTP, SMB, and WebDAV access that mirrors your file maneuvers in real-time. Want to keep your files in sync? FileRun's desktop apps are like loyal sync-hounds, keeping your digital life in harmony. And for the jet-setters, mobile apps ensure your files are just a tap away, no matter where your adventures take you. Photo aficionados, rejoice! FileRun is a photo management wizard, conjuring thumbnails at lightning speed, offering a stroll down memory lane with timeline browsing, and understanding your photos' inner secrets with metadata support. Create virtual photo albums from scattered folders and share them like a modern-day bard online. The new virtual drive feature is like having an invisible backpack for your files – access them directly without the heavyweight of disk space. Collaborate like a true open-source knight with guest users and file requests, making file collection as easy as a medieval fair. FileRun's plugin posse allows you to edit, view, and convert files with the ease of a court jester's flip. With automatic file versioning and a trash folder for oopsies, your files are as safe as in a dragon-guarded castle. Customize FileRun to flaunt your branding colors and make it yours. Secure, feature-stuffed, and with a mobile experience smoother than a minstrel's tune, FileRun on RepoCloud is the cost-effective way to keep your digital realm in order!
Directus
Say hello to Directus, the open-source genie that magically turns any SQL database into a snazzy API and a slick no-code playground. It's like a Swiss Army knife for your data, playing nice with any SQL database you throw at it, so you can keep your precious data right where it is—no moving vans required. With Directus, you get a REST and GraphQL API superhighway built atop your database, making your data dance at your fingertips. And the Directus App? It's like a VIP lounge for your team, where they can schmooze with data in style, managing and visualizing it without breaking a sweat. Whether you're crafting a Backend-as-a-Service masterpiece, spinning up a Headless CMS, building the ultimate internal toolset, or diving into Data Management & Analytics, Directus is your go-to wingman. Plus, with RepoCloud hosting, you'll be saving more coins than a video game plumber, all while enjoying the freedom of open-source camaraderie. Get ready to connect, design, and control like a data wizard, because with Directus and RepoCloud, the digital world is your oyster!
Plex
Get ready to unleash your inner media mogul with Plex Media Server, the app that transforms your ho-hum device lineup into a snazzy, streaming powerhouse! Picture this: your entire media empire—be it the tear-jerking dramas, toe-tapping tunes, or those vacation snaps that scream 'I need a better camera'—all at your fingertips, ready to beam across the cosmos to whatever gadget you fancy. Whether you're glued to your smartphone, worshipping the console gods, or binging on the big screen, Plex has got your back. And with networking styles like the bridge (not the one you cross), host (not the one with the most), and macvlan (not a type of pasta), you'll connect faster than you can say 'pass the popcorn'. Plus, with Intel Quick Sync flexing its muscles for hardware transcoding, your streams will be smoother than a jazz sax solo. Host it all on RepoCloud, where the cost is as tiny as the fine print on your phone contract, and you'll be the streaming sensation of the neighborhood!
Ntfy
Get ready to elevate your notification game with ntfy – it's like having a personal town crier for the digital age! This nifty little app turns your phone or desktop into a buzzing hub of updates, all thanks to the magic of HTTP-based chit-chat. Whether you're knee-deep in code or just waiting for that marathon script to finally say 'I'm done!', ntfy is your go-to for keeping in the loop. Just pop the app onto your trusty smartphone, pick a topic that tickles your fancy, and voilà – you're the master of messages! And the best part? It's as free as your grandma's love, but you can throw some coin their way with a premium plan if you're feeling generous. Host it on RepoCloud, and you'll be saving more dough than a budget bakery – all while supporting the open-source vibe!
Bytebase
description_humorous
Listmonk
Seven million emails from a single binary peaking at 57 MB of RAM: listmonk is a high-performance newsletter and mailing list manager in Go with PostgreSQL as its only dependency - no Redis, no worker processes, no message broker. The project's own production benchmark sent 7+ million emails with the binary peaking around 57 MB of RAM, and throughput exceeds 100K emails per hour on modest hardware. Campaigns run through a multi-threaded, multi-SMTP queue with round-robin delivery, per-server concurrency, retries, and sliding-window rate limiting across providers like Amazon SES, SendGrid, Mailgun, or your own Postfix relay. Subscribers carry custom JSON attributes and are segmented with raw SQL queries, so any audience Postgres can express, listmonk can target. Templates use Go template syntax with 100+ functions for dynamic per-subscriber content, and the Vue dashboard reports opens, clicks, bounces, and unsubscribes with automated bounce processing. A REST API handles transactional email and programmatic control, a built-in media library hosts campaign assets, and CSV or API import migrates lists from hosted platforms. The economics are the headline: where Mailchimp pricing scales with list size, listmonk plus Amazon SES sends the same volume for hosting cost plus roughly $0.10 per thousand emails - commonly a 95% reduction - and your email list, a core business asset, stays on your own infrastructure. AGPLv3-licensed; bring your own SMTP provider for delivery.
Ghost
Get ready to transform your audience into a thriving empire with Ghost, the ultimate toolkit for the modern content maestro! Imagine a digital playground where you can craft a dazzling website, publish content that pops, and roll out newsletters that readers can't wait to open. Ghost is your go-to wingman for launching a site that's as unique as your brand, with a smorgasbord of snazzy free themes and customizable design options. But wait, there's more! Ghost's editor is like the Swiss Army knife for content pros – sleek, powerful, and ridiculously easy to use. Unleash your creative beast with multimedia storytelling that includes everything from stunning image galleries to toe-tapping audio. And when it comes to turning casual lurkers into loyal subscribers, Ghost's got your back with native signup forms and analytics sharper than a detective's eye. Plus, with built-in newsletters and special promos, you'll have subscribers flocking like it's Black Friday. Hosted on RepoCloud, where the cost is as friendly as your neighborhood barista, Ghost is the open-source secret sauce to a booming content business!
LibreTranslate
Machine translation with no Google, no Azure, no per-character billing, and no text leaving your infrastructure: LibreTranslate is a free, open-source translation API that runs entirely on your own server. The engine underneath is Argos Translate, which runs OpenNMT neural models with SentencePiece tokenization and Stanza sentence-boundary detection, all offline. Models install as portable .argosmodel packages covering dozens of languages - English, Spanish, French, German, Chinese, Japanese, Russian, Arabic, Hindi, Portuguese, and many more - and Argos handles automatic pivoting: with es-to-en and en-to-fr installed, it chains them to translate es-to-fr without a direct model. The API is a straightforward HTTP POST to /translate with source and target language codes, returning JSON - simple enough that the ecosystem has clients in every major language and integrations across tools like Weblate and Mastodon. Beyond plain text it translates HTML while preserving markup and handles whole file uploads (documents in, translated documents out), plus automatic language detection when the source is unknown. A clean bundled web UI serves interactive translation for end users, and optional API keys with rate limits control access. AGPL-licensed and trainable with custom models, it is the standard answer when translation must be private, unmetered, and self-contained - GDPR-sensitive text never touches a third party.
Outline Wiki
Get ready to turbocharge your team's brainpower with Outline! Imagine a digital treehouse where all your team's knowledge is not just thrown in haphazardly, but organized with the finesse of a library catalog. With Outline, you'll be crafting documents like a pro, thanks to its slick markdown support, nifty slash commands, and the ability to embed pretty much anything. Wave goodbye to the chaos of collaboration; real-time editing, threaded conversations, and comments mean you'll be in sync faster than you can say 'knowledge is power!' And for those who live in Slack, Outline's like the cool neighbor that never makes you leave your chat to search or share docs. Want to show off your brand's swagger? Go public with your docs, decked out in your brand's colors and logo, right on your own domain. It's like having a custom-tailored suit for your content. Speedy, secure, and simpler than a Sunday morning - Outline is the multilingual maestro of your team's symphony, playing well with Figma, Loom, and a whole orchestra of tools. And hosting it on RepoCloud? That's like getting first-class seats for your data at a budget airline price!
PhotoPrism
Get ready to give your photo collection a dose of AI smarts with PhotoPrism, the snazzy, decentralized dazzler of the image world! This app is like a ninja in the night, silently tagging and sorting your snapshots without so much as a hiccup in your day-to-day. Whether you're a homebody with a penchant for privacy or a cloud-surfing digital nomad, PhotoPrism's got your back. Wave goodbye to the headache of RAW files, the clones of duplicate images, and the babel of video formats. With its slick search sorcery, you can pinpoint that one photo of Aunt Mabel's surprise birthday party in a snap. Plus, with glossy world maps, you can take a stroll down memory lane, but with GPS precision. Fancy a bit of magic? Just hover over those Live Photos and watch them... well, live! And let's not forget the facial recognition – it's like having a butler who knows your guests by sight, only it's your photos. PhotoPrism is the Fort Knox of photo apps, guarding your precious memories with an ironclad promise of privacy. Host it on RepoCloud, and you'll be saving more than just memories; you'll be saving some serious coin, too!