GitHub

A quiet place for meaningful conversation.

Murmur is a self-hosted, open-source social platform designed for calm, intentional discourse. No algorithms. No engagement metrics. Just you and your community.

Get Started

Why Murmur?

📜

No Algorithms

Posts appear in chronological order. You see what you follow, nothing more.

🔇

No Metrics

No public like counts, no follower leaderboards, no viral incentives.

🏠

No Federation

Your instance, your rules. Simple to run, simple to moderate.

🔐

Your Data

Self-hosted means you own everything. Export anytime.

💬

Topics & Follows

Organize conversations by category. Build your own feed by following people you care about.

🎨

Customizable

Theming with CSS-only styling. Make it yours.

Quick Start

Get Murmur running in minutes.

# Install Murmur
composer create-project moonspot/murmur murmur
cd murmur

# Configure database
cp etc/config.ini.example etc/config.ini
# Edit etc/config.ini with your database settings

# Create database tables (SQLite example)
sqlite3 data/murmur.db < schema/sqlite/schema.sql

# Start the development server
php -S localhost:8000 -t public