Quick Start Guide
This guide will help you quickly set up Pulsarr to monitor your Plex watchlists and route content to Sonarr and Radarr.
Prerequisites
Before you begin, ensure you have:
- Docker (recommended for deployment)
- Plex Pass subscription (optional - non-Plex Pass users supported with 20-minute polling intervals)
- Sonarr/Radarr installation(s)
- API keys for your Sonarr/Radarr instances
Installation Options
Pulsarr can be installed using Docker (recommended), Unraid, or manual installation. Choose the method that works best for your environment.
Docker Installation (Recommended)
- Create a
.env
file with your configuration:
# Required settings
baseUrl=http://your-server-ip # Address where Pulsarr can be reached by Sonarr/Radarr
port=3003 # Port where Pulsarr is accessible
TZ=America/Los_Angeles # Set to your local timezone
# Recommended settings
logLevel=info # Default is 'silent', but 'info' is recommended
NODE_ARGS=--log-both # Default logs to file only, '--log-both' shows logs in terminal too
- Create a
docker-compose.yml
file and add the following:
services:
pulsarr:
image: lakker/pulsarr:latest
container_name: pulsarr
ports:
- "3003:3003"
volumes:
- ./data:/app/data
- .env:/app/.env
restart: unless-stopped
env_file:
- .env
- Pull the image and run Docker Compose to start the service:
docker compose pull && docker compose up -d
- Navigate to the web UI (http://your-server:3003) to complete setup.
Unraid Installation
Pulsarr is available in the Unraid Community Applications (CA) store:
- Open the Unraid web UI
- Navigate to the "Apps" tab
- Search for "Pulsarr"
- Click "Install"
- Configure the container settings as needed
- Start the container
Alternatively, you can use the Docker installation method described above.
Manual Installation
If you prefer to build and run Pulsarr manually:
Prerequisites
- Node.js 20 LTS or higher
- Git
Steps
# Clone the repository
git clone https://github.com/jamcalli/pulsarr.git
cd pulsarr
# Install dependencies
npm install
# Build the application
npm run build
# Run database migrations
npm run migrate
# Start the server
npm run start:prod
The server will start on port 3003 by default. Navigate to http://localhost:3003
to complete setup.
For more detailed configuration options, see:
Initial Setup
- Access the web interface at
http://your-server:3003
- Create an Admin account when prompted
- Enter your Plex Token to begin synchronization
- Configure your Sonarr and Radarr connections:
- Add instance details (URL, API key)
- Configure default quality profiles and root folders
- Set up content routing rules (optional)
- Set sync permissions for any friends' watchlists you'd like to include
- Ensure users have their Account Visibility set to 'Friends Only' or 'Friends of Friends'
- Head to the
Dashboard
page and click on the Start button next to the Main Workflow heading- Toggle 'Auto Start' to true for automatic operation
Next Steps
After completing the quick start, you might want to: