Quick Start
Prerequisites
Installation
1. Clone the Repository
git clone https://github.com/preq/projects-manager.gitcd projects-manager2. Configure Environment
Copy .env.example to .env and fill in the required variables:
cp .env.example .envThen edit .env:
# RequiredAUTH_SECRET=<generate with: openssl rand -hex 32>OWNER_EMAIL=your-email@example.comOWNER_PASSWORD=<your-password>DATABASE_URL=postgresql://... # Your Neon connection string
# OptionalPORT=3000ALLOWED_ORIGINS=http://localhost:30003. Install Dependencies
npm install4. Apply Database Migrations
npx prisma migrate deploy5. Start the Development Server
npm run devThe app runs at http://localhost:3000. Log in with the email and password you set in .env.
Issue Your First API Key
- Open
http://localhost:3000and log in - Navigate to Settings > API Keys
- Click + New Token
- Name it
local-devand save - Copy the token (starts with
preq_)
Use this token to configure preqstation-skill on your coding agents.
Next Steps
- Kanban Board Guide — Learn task management
- Concepts — Understand the kitchen metaphor
- API Keys — Manage agent tokens