Skip to main content

Get started

Prerequisites

  • Node.js >= 22
  • pnpm >= 10.4.1
  • Docker and Docker Compose (for local development)

Installation

1

Clone the repository

git clone https://github.com/niceyup/niceyup.git
cd niceyup
2

Install dependencies

pnpm install
3

Set up environment variables

cp .env.example .env
# Edit .env with your configuration
4

Start local services (PostgreSQL and Redis)

docker-compose up -d
5

Run database migrations

cd packages/db
pnpm run db:push
6

Start the development servers

pnpm dev
This will start:
  • Web app at http://localhost:3000
  • API server at http://localhost:3333