Getting Started
Installation
Get started with Repix.
Prerequisites
- Node.js 22.0.0 or higher
- npm or yarn
Clone the repository
Terminal
git clone https://github.com/bansal/repix.git
cd repix
Install dependencies
Terminal
npm install
Configure the service
Copy the example environment file and customize as needed:
Terminal
cp .env.example .env
# Edit .env with your settings
Start in development mode
Terminal
npm run dev
The server runs at http://localhost:3210
Production build
For production deployment:
Terminal
npm run build
npm start
Development Scripts
| Command | Description |
|---|---|
npm run dev | Start development server with hot reload |
npm run build | Build for production |
npm start | Start production server |
npm run type-check | Check TypeScript types |
npm test | Run tests (when implemented) |

