Satellity alternatives and similar software solutions
Based on the "Social Networks and Forums" category.
Alternatively, view Satellity alternatives based on common mentions on social networks and blogs.
-
Reddit
DISCONTINUED. Social networking and news website where registered community members can submit content. -
HumHub
HumHub is an Open Source Enterprise Social Network. Easy to install, intuitive to use and extendable with countless freely available modules. -
Patchwork
DISCONTINUED. A decentralized messaging and sharing app built on top of Secure Scuttlebutt (SSB). -
Vanilla Forums
Vanilla is a powerfully simple discussion forum you can easily customize to make as unique as your community. -
phpBB
phpBB Development: phpBB is a popular open-source bulletin board written in PHP. This repository also contains the history of version 2. -
OSSN
Open Source Social Network (OSSN) is a social networking software written in PHP. It allows you to make a social networking website and helps your members build social relationships, with people who share similar professional or personal interests. It is available in 19 international languages. -
Talkyard
A community discussion platform: Brings together the main features from StackOverflow, Slack, Discourse, Reddit, and Disqus blog comments. -
Hubzilla
DISCONTINUED. Independent general-purpose websites that not only connect with their associated members and viewers, but also connect together. -
Simple Machines Forum
Simple Machines Forum β SMF in short β is free and open-source community forum software, delivering professional grade features in a package that allows you to set up your own online community within minutes! -
Anahita
Anahita is a platform and framework for developing open science and knowledge sharing applications on a social networking foundation. -
Jappix
:speech_balloon: Jappix, a full-featured XMPP web-client (Jappix Desktop, Jappix Mobile & Jappix Mini). -
twtxt.net
DISCONTINUED. π twtxt is a Self-Hosted, Twitterβ’-like Decentralised microBlogging platform. No ads, no tracking, your content, your data! -
'Friend OS v1.3.0, "Helium"
FriendOS is a free web based platform that runs in your browser. It allows you to work and play, collaboratively, across devices. -
BuddyPress
BuddyPress DEVELOPMENT repo. This repository is just a mirror of the development SVN at https://buddypress.svn.wordpress.org/. Please include a link to a pre-existing ticket on https://buddypress.trac.wordpress.org/ with every pull request. -
GNU social
DISCONTINUED. GNU social is social communication software for both public and private communications.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Satellity or a related project?
README
Satellity
Satellity is a 100% open source forum, written in Go. Please visit https://routinost.com for more details. For feedback, you can submit issues or join our slack(https://bit.ly/31b6xeX), Let's learn Go together!
How to deployment
- A VPS, I'm using Digital Ocean right now, and you can use any other VPS like GCP, AWS. You'll get some credit from the link, and it depends on you.
- Install Nginx
sudo apt install nginx -y
, here is an example config of nginx https://github.com/satellity/satellity/blob/master/deploy/nginx_example.conf , I'm using Ubuntu 20.04 LTS - Install Postgresql
sudo apt install postgresql -y
, how to install PostgreSQL On Ubuntu, after create the database, you need import the database schema https://github.com/satellity/satellity/blob/master/internal/models/schema.sql - Deploy the api server and web, you can find the shell script here: https://github.com/satellity/satellity/tree/master/deploy
- Use systemd to manage http server, here is the service template https://github.com/satellity/satellity/blob/master/deploy/systemd/satellity-http.service, and you can find the basic commands here
- Lets Encrypt, here is a step by step tutorial, https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-20-04
- Then you can visit you website after restart nginx
Some people want to know why not use docker? The most direct reason is that I don't know docker and didn't take time on it. And a shell script is enough for me right now.
Features
- REST API back-end written in Golang
- React-based frontend
- PostgreSQL, one of the best open source, flexible database
- Social login (OAuth 2.0) only support Github now
- JSON Web Tokens (JWT) are used for user authentication in the API
- Markdown supported topic and comment
- Model tested
Built With
- go version go1.15 darwin/amd64
- postgres (PostgreSQL) 12.3
- react 16.13.1
Structure
./
is back-end service, we followed golang-standards project-layout../app
is front-end service, contains React, Parcel and etc../deploy
contains example of deploy, nginx and systemd.
Screenshot
Getting Started
Backend
cd ./internal
, copyconfig/config.example
toconfig/config.yaml
. Replace config with yours.- Prepare and start database, the database schema under
./internal/models/schema.sql
, how to install postgresql. cd ./ && go build && ./satellity
to start Golang server
Frontend
Copy
env.example
to.env
, and replaceSatellity
with your project name.SITE_NAME=your site name
run
yarn install
, thenyarn start
. It's running now.
Contribution
When contributing to this repository, please reach out to @jadeydi or other contributors via email, issue or any other means to discuss the changes you wish to make.
You can also just clone the repository, create a new branch of the feature or issue and make adequate changes then push and create a pull-request and request a review from other contributors.
License
*Note that all licence references and agreements mentioned in the Satellity README section above
are relevant to that project's source code only.