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 StartedPosts appear in chronological order. You see what you follow, nothing more.
No public like counts, no follower leaderboards, no viral incentives.
Your instance, your rules. Simple to run, simple to moderate.
Self-hosted means you own everything. Export anytime.
Organize conversations by category. Build your own feed by following people you care about.
Theming with CSS-only styling. Make it yours.
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