All Projects → cloudpatron → Cloudpatron

cloudpatron / Cloudpatron

Licence: mit
Cloud Patron - Open source Patreon alternative

Projects that are alternatives of or similar to Cloudpatron

Commafeed
Google Reader inspired self-hosted RSS reader.
Stars: ✭ 1,842 (+917.68%)
Mutual labels:  self-hosted
Barcodebuddy
Barcode system for Grocy
Stars: ✭ 159 (-12.15%)
Mutual labels:  self-hosted
Selfoss
multipurpose rss reader, live stream, mashup, aggregation web application
Stars: ✭ 2,070 (+1043.65%)
Mutual labels:  self-hosted
Lumo
Fast, cross-platform, standalone ClojureScript environment
Stars: ✭ 1,861 (+928.18%)
Mutual labels:  self-hosted
Myazo
Self-hosted, cross-platform Gyazo alternative
Stars: ✭ 154 (-14.92%)
Mutual labels:  self-hosted
Ownhealthrecord
This repository is about the OwnHealthRecord Application Web App
Stars: ✭ 162 (-10.5%)
Mutual labels:  self-hosted
Atheos
A self-hosted browser-based cloud IDE, updated from Codiad IDE
Stars: ✭ 144 (-20.44%)
Mutual labels:  self-hosted
Changedetection.io
changedetection.io - The best and simplest self-hosted website change detection monitoring service. An alternative to Visualping, Watchtower etc. Designed for simplicity - the main goal is to simply monitor which websites had a text change. Open source web page change detection.
Stars: ✭ 180 (-0.55%)
Mutual labels:  self-hosted
Shhh
Share sensitive info without leaving a trace in your chat logs or email accounts.
Stars: ✭ 159 (-12.15%)
Mutual labels:  self-hosted
Hastic Grafana App
Hastic data management server for labeling patterns and anomalies in Grafana
Stars: ✭ 166 (-8.29%)
Mutual labels:  self-hosted
Subspace
A simple WireGuard VPN server GUI
Stars: ✭ 2,109 (+1065.19%)
Mutual labels:  self-hosted
Hakatime
Wakatime server implementation & analytics dashboard
Stars: ✭ 154 (-14.92%)
Mutual labels:  self-hosted
Rapidbay
Self-hosted torrent video streaming service compatible with Chromecast and AppleTV deployable in the cloud
Stars: ✭ 163 (-9.94%)
Mutual labels:  self-hosted
Photo Stream
Self-hosted, super simple photo stream
Stars: ✭ 1,839 (+916.02%)
Mutual labels:  self-hosted
Mininote
📔 A simple Markdown note-taking editor
Stars: ✭ 171 (-5.52%)
Mutual labels:  self-hosted
Photoprism
Photos App powered by Go and Google TensorFlow 🌈
Stars: ✭ 17,946 (+9814.92%)
Mutual labels:  self-hosted
Leed
Leed (contraction de Light Feed) est un agrégateur RSS libre et minimaliste qui permet la consultation de flux RSS de manière rapide et non intrusive.
Stars: ✭ 160 (-11.6%)
Mutual labels:  self-hosted
Seleniumbase
A Python framework that inspires developers to become better test automation engineers. 🧠💡
Stars: ✭ 2,520 (+1292.27%)
Mutual labels:  self-hosted
Appsmith
Low code project to build admin panels, internal tools, and dashboards. Integrates with 15+ databases and any API.
Stars: ✭ 12,079 (+6573.48%)
Mutual labels:  self-hosted
Grocy Docker
ERP beyond your fridge - now containerized - this is the docker repo of https://github.com/grocy/grocy
Stars: ✭ 164 (-9.39%)
Mutual labels:  self-hosted

Cloud Patron - Open source Patreon alternative

Cloud Patron is an open source membership platform that enables fans to support creators with monthly subscriptions. Creators can customize support levels, set goals, and post updates for their patrons. Supports monthly credit card billing using Stripe.

Screenshot

Demo

Features

  • Post Updates
    • Add private updates for your patrons. Posts can also be unlocked for public access.
  • Project Goals
    • Set short and long-term milestones for your project.
  • Support Levels
    • Customize support levels for your patrons.
  • Credit Card Billing
    • Add your Stripe API keys to enable monthly credit card processing.
  • Export Email List
    • Download your patron email list for use with cloud email services.
  • Social Media Links
    • Add your Facebook, Twitter, YouTube, and Instagram.
  • Custom Landing Page
    • Add your name, description, logo, and header image to customize your landing page.
  • Bitcoin Payments (TODO)
    • Allow Patrons to pay their membership with Bitcoin.

Run Cloud Patron on Portal Cloud

Portal Cloud is a hosting service that enables anyone to run open source cloud applications.

Sign up for Portal Cloud and get $15 free credit.

Run Cloud Patron on a VPS

Running Cloud Patron on a VPS is designed to be as simple as possible.

  • Public Docker image
  • Single static Go binary with assets bundled
  • Automatic TLS using Let's Encrypt
  • Redirects http to https
  • No database required

1. Get a server

Recommended Specs

  • Type: VPS or dedicated
  • Distribution: Ubuntu 16.04 (Xenial)
  • Memory: 512MB or greater

2. Add a DNS record

Create a DNS record for your domain that points to your server's IP address.

Example: cloudpatron.example.com A 172.x.x.x

3. Enable Let's Encrypt

Cloud Patron runs a TLS ("SSL") https server on port 443/tcp. It also runs a standard web server on port 80/tcp to redirect clients to the secure server. Port 80/tcp is required for Let's Encrypt verification.

Requirements

  • Your server must have a publicly resolvable DNS record.
  • Your server must be reachable over the internet on ports 80/tcp and 443/tcp.

Usage

Example usage:

# Download the cloudpatron binary.
$ sudo wget -O /usr/bin/cloudpatron https://github.com/cloudpatron/cloudpatron/raw/master/cloudpatron-linux-amd64

# Make it executable.
$ sudo chmod +x /usr/bin/cloudpatron

# Allow it to bind to privileged ports 80 and 443.
$ sudo setcap cap_net_bind_service=+ep /usr/bin/cloudpatron

$ cloudpatron --http-host cloudpatron.example.com

Arguments

  -backlink string
    	backlink (optional)
  -datadir string
    	data dir (default "/data")
  -debug
    	debug mode
  -help
    	display help and exit
  -http-host string
    	HTTP host
  -version
    	display version and exit


Run as a Docker container

The official image is cloudpatron/cloudpatron.

Follow the official Docker install instructions: Get Docker CE for Ubuntu

Make sure to change the --env CLOUDPATRON_HTTP_HOST to your publicly accessible domain name.

# Your data directory must be bind-mounted as `/data` inside the container using the `--volume` flag.
# Create a data directoy 
$ mkdir /data

docker create \
    --name cloudpatron \
    --restart always \
    --volume /data:/data \
    --network host \
    --env CLOUDPATRON_HTTP_HOST=cloudpatron.example.com \
    cloudpatron/cloudpatron:latest

$ sudo docker start cloudpatron

$ sudo docker logs cloudpatron

<log output>

Updating the container image

Pull the latest image, remove the container, and re-create the container as explained above.

# Pull the latest image
$ sudo docker pull cloudpatron/cloudpatron

# Stop the container
$ sudo docker stop cloudpatron

# Remove the container (data is stored on the mounted volume)
$ sudo docker rm cloudpatron

# Re-create and start the container
$ sudo docker create ... (see above)

Help / Reporting Bugs

Email [email protected]

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].