Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,7 @@ pnpm dev
nextjs-nestjs-expo-template/
├── apps/
│ ├── backend/ # NestJS API server
│ ├── web/ # Next.js web application
│ └── mobile/ # Expo React Native application
│ └── mobile/ # Expo React Native application (Web, iOS, Android)
├── packages/
Comment on lines 88 to 91
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

Restore the separate web app entry.

The repo still includes an apps/web Next.js project, so removing it from the project tree and implying that the Expo bundle covers Web is inaccurate. Please keep both apps/web (Next.js) and apps/mobile (Expo) listed so the README matches the repo layout.


🏁 Script executed:

#!/bin/bash
# Verify current applications within the monorepo
ls -1 apps

Length of output: 18


Restore separate web app entry in README.md

At README.md (lines 88–91), list all three apps under apps/:
├── apps/
│ ├── backend/ # NestJS API server
│ ├── mobile/ # Expo React Native application (iOS, Android, Web)
│ └── web/ # Next.js web application

This ensures the README matches the actual apps/ directory.

🤖 Prompt for AI Agents
In README.md around lines 88 to 91, the apps list omits the separate web entry;
restore the third entry by updating the apps tree to list backend/, mobile/
(specifying iOS, Android, Web optional) and add a new web/ entry with a short
description (e.g., Next.js web application) so the README matches the actual
apps/ directory structure.

│ ├── analytics/ # PostHog analytics integration
│ ├── db/ # Database models and TypeORM configuration
Expand Down