A guide on how to run Niceyup’s codebase locally.
Clone the repository
git clone https://github.com/niceyup/niceyup.git cd niceyup
Install dependencies
pnpm install
Set up environment variables
cp .env.example .env # Edit .env with your configuration
Start local services (PostgreSQL and Redis)
docker-compose up -d
Run database migrations
cd packages/db pnpm run db:push
Start the development servers
pnpm dev
http://localhost:3000
http://localhost:3333