Nextly is the tool that helps you move to what’s next — smoothly, insightfully, and continuously. It captures, organizes, and announces product feedback in one place. Built for developers, product managers, and modern startups.
- Feedback Collection: Users can submit feedback via an in-app form.
- Feedback Organization: Categorize and prioritize feedback within the app.
- Feedback Announcement: Publish selected feedback and share updates transparently with users.
- Streamline the feedback loop between users and teams.
- Create a single source of truth for product feedback.
- Improve communication and alignment across product and development teams.
- Frontend
- TanStack Start (React + File-based Routing)
- TypeScript
- Tailwind CSS v4
- shadcn/ui (for accessible, clean UI components)
- Backend: Golang
- Database: Postgres
- Docker and Docker Compose
- Node.js 22.10.0 (recommended via Volta)
- pnpm package manager
-
Navigate to the API directory:
cd api -
Create a
.envfile with the following variables:PGUSER=your_postgres_user PGPASSWORD=your_postgres_password PGDATABASE=nextly_db PGPORT=5432 PGHOSTPORT=5432
-
Start the backend services:
docker-compose up -d
This will start:
- API Server: http://localhost:8080
- PostgreSQL Database: localhost:5432
- Redis Cache: localhost:6379
-
To view logs:
docker-compose logs -f
-
To stop the services:
docker-compose down
-
Navigate to the frontend directory:
cd frontend -
Install dependencies:
pnpm install
-
Start the development server:
pnpm dev
The frontend will be available at http://localhost:3000
-
Build for production:
pnpm build
-
Start production server:
pnpm start
- Start backend services:
cd api && docker-compose up -d - Start frontend development:
cd frontend && pnpm dev - Access the application at http://localhost:3000
- API endpoints available at http://localhost:8080
Backend:
# Rebuild and restart API container
docker-compose up --build api
# Access database
docker exec -it product-road-db psql -U your_postgres_user -d nextly_db
# View API logs
docker-compose logs -f api