Manual Installation Guide
This guide explains how to set up TestPlanIt for local development manually, without using Docker.
Prerequisites
Before you begin, ensure you have the following installed:
Required Services:
- PostgreSQL - Main database
- Valkey or Redis - Job queue and caching (Redis-compatible)
Optional Services:
The application will run without these services, but certain features will be disabled:
- Elasticsearch - Search and indexing
- Without it: Search functionality will be unavailable, but the application will function normally otherwise
- MinIO or AWS S3 - File storage for attachments
- Without it: File uploads (attachments, avatars, project icons) will fail with an error message
- SMTP Email Server - Email notifications and Magic Link authentication
- Without it: In-app notifications will still work, but email delivery will fail; Magic Link authentication will be unavailable (use password authentication instead)
Installation & Setup Steps
-
Clone the repository: Open your terminal and clone the TestPlanIt monorepo:
git clone https://github.com/testplanit/testplanit.git
cd testplanit -
Install dependencies: Run the installation command from the monorepo root directory (
testplanit/):pnpm installThis installs dependencies for all packages in the monorepo.
-
Set up environment variables: Navigate into the TestPlanIt application directory (
testplanit/testplanit) and copy the example environment file:cd testplanit
cp .env.example .env- Edit the newly created
.envfile. The most crucial setting isDATABASE_URL. Update this value to point to your locally running PostgreSQL instance. - Add the Valkey URL: Add
VALKEY_URL="valkey://localhost:6379"(or the appropriate URL if your Valkey instance is running elsewhere or requires authentication) to the file. This is needed for background job processing. - Review other settings like
NEXTAUTH_SECRET(generate a new secret if needed), email server details (required for Magic Link authentication and notifications), etc., and configure them according to your needs. - Admin User Seeding: The
ADMIN_EMAIL,ADMIN_NAME, andADMIN_PASSWORDvariables are used by thepnpm prisma db seedcommand to create the initial administrator user. You can customize these values in your.envfile if you prefer different default credentials. - Demo Project: The seed script also creates a pre-populated Demo Project with sample test cases, test runs, sessions, milestones, tags, and issues. This helps new users explore TestPlanIt's features immediately. You can delete the Demo Project at any time from Administration > Projects.
- Edit the newly created
-
Run database migrations: Navigate back into the application directory (
testplanit/testplanit) and run the Prisma migrations to create the necessary database tables:cd testplanit # Ensure you are in the testplanit/testplanit directory
pnpm prisma migrate dev -
Run the development server: Still within the
testplanit/testplanitdirectory, start the Next.js development server:pnpm dev -
Access TestPlanIt: Open your web browser and navigate to http://localhost:3000. You should see the TestPlanIt application.
You are now ready to start using TestPlanIt locally!