Official documentation site for Atria - the open-source event management and networking platform.
Built with Docusaurus, a modern static site generator.
This documentation site provides comprehensive guides for:
- Installation - Set up Atria locally with Docker, Docker Compose, manual installation, or production deployment
- Organizations & Multi-Tenancy - Organization structure, roles, member management, and data isolation
- Events Overview - Event types, lifecycle, formats (virtual/in-person/hybrid), and multi-day support
- Creating Events - Step-by-step event creation, required fields, and configuration
- Event Customization - Hero sections, content sections, icebreakers, and branding
- Publishing Events - Validation, requirements, and publishing workflow
- Managing Chat Rooms - Create and configure chat rooms (General, Admin, Green Room)
- Managing Icebreakers - Set up conversation starters for attendee networking
- Inviting Attendees - Individual and bulk invitations, invitation workflow
- Managing Roles - Role hierarchy, permissions, and role changes
- Moderation - Event bans, chat restrictions, message deletion, and moderation history
- Creating Sessions - Session scheduling, types, status management, and chat modes
- Managing Speakers - Adding speakers, roles, assignments, and speaker profiles
- Video Platforms Overview - Multi-platform comparison (Vimeo, Mux, Zoom, Jitsi, Other) and decision guide
- Vimeo Streaming - Setup, live streaming, VOD, and troubleshooting
- Mux Streaming - PUBLIC and SIGNED playback, BYOA model, live streams and VOD
- Zoom Meetings - Interactive meeting integration and security settings
- Jitsi Meetings (JaaS) - Embedded conferencing, per-user JWT authentication, moderator controls
- Other/External Links - Link to any external platform (MS Teams, Google Meet, etc.)
- Making Connections - Attendee discovery, connection requests, and icebreakers
- Privacy Controls - Email visibility, connection permissions, profile visibility
- Chat Rooms - Using event chat rooms (global, green room, admin, session rooms)
- Direct Messaging - One-on-one conversations, thread management, desktop vs mobile
- Managing Sponsors - Sponsor tiers, logo uploads, drag-and-drop ordering, visibility controls
- Account Creation - Registration and email verification
- Your Profile - Profile editing, avatar customization, social links
- Account & Security Settings - Privacy settings, password management, event-specific overrides
- REST API Documentation - Auto-generated from OpenAPI specification (interactive)
- 27 comprehensive user guides covering organizer and attendee workflows
- All guides include real-world scenarios, troubleshooting, and best practices
- Platform comparison tables and decision guides for streaming options
- Mobile vs desktop differences documented where applicable
- Node.js 20+
- npm
# Install dependencies
npm install
# Start development server
npm startThis command starts a local development server and opens a browser window. Most changes are reflected live without having to restart the server.
# Build static site
npm run buildThis command generates static content into the build directory that can be served using any static hosting service.
The API docs are auto-generated during Docker builds from the production OpenAPI spec.
For local development, generate them manually:
# Fetch and generate API docs from production
npm run gen-api-docs
# Clean generated API docs
npm run clean-api-docsThe API documentation is generated from: https://atria.gg/api-spec.json
Note: docs/api/ is gitignored - API docs are generated fresh from production during each build.
Build and run with Docker:
# Build the image
docker build -t atria-docs .
# Run the container
docker run -p 3000:80 atria-docsOr use Docker Compose:
docker-compose upThe site will be available at http://localhost:3000
The docs site is automatically deployed to the K3s cluster when changes are pushed to the main branch.
atria-docs/
├── docs/ # Documentation content (Markdown)
│ ├── intro.md # Welcome page
│ ├── getting-started/ # Installation and setup
│ ├── core-concepts/ # Organizations, events overview
│ ├── event-management/ # Event creation, customization, publishing, chat rooms, icebreakers
│ ├── attendee-management/ # Invitations, roles, moderation
│ ├── sessions-speakers/ # Session and speaker management
│ ├── video-streaming/ # Multi-platform streaming (Vimeo, Mux, Zoom, Jitsi, Other)
│ ├── networking-features/ # Connections and privacy (attendee guides)
│ ├── chat-messaging/ # Chat rooms and DMs (attendee guides)
│ ├── sponsors/ # Sponsor management
│ ├── your-account/ # Account creation, profile, settings
│ └── api/ # Generated API docs (gitignored)
├── blog/ # Blog posts
├── src/ # Custom React components
│ ├── components/
│ ├── css/ # Custom styling
│ └── pages/
├── static/ # Static assets (images, favicons)
├── docusaurus.config.ts # Site configuration
├── sidebars.ts # Sidebar navigation structure
├── Dockerfile # Production Docker image
├── DOCS_PROGRESS.md # Documentation completion tracker
└── package.json
Contributions are welcome! Please follow these guidelines:
- Use clear, concise language - Write for users, not developers
- Include practical examples - Real-world scenarios and use cases
- Add troubleshooting - Common issues and solutions
- Test locally - Build and review before submitting
- Update progress tracking - Update
DOCS_PROGRESS.mdif adding new guides
- User-facing, not technical - Focus on what users see and do, not implementation details
- Include mobile differences - Document mobile vs desktop when applicable
- Real-world scenarios - Provide common use case walkthroughs
- Best practices - Share guidance and recommendations
- Warnings for destructive actions - Alert users to irreversible operations
- Use the Explore agent to analyze the relevant codebase sections
- Create user-focused guides based on actual implementation
- Apply user corrections to ensure accuracy
- Update
sidebars.tsif creating new categories - Update
DOCS_PROGRESS.mdwith completion status
This site uses docusaurus-plugin-openapi-docs to generate interactive API documentation from the Atria OpenAPI specification.
Note: The OpenAPI spec currently has some schema validation issues that need to be fixed in the backend before API docs can be fully generated.
Documentation is licensed under CC BY 4.0.
The Atria platform itself is licensed under AGPL-3.0 - see the main repository for details.
Questions? steven@sbtl.dev | GitHub Issues