From 703f61ec0fca7cd673a607168ede4befee25bbbb Mon Sep 17 00:00:00 2001 From: sylee212 Date: Thu, 11 Dec 2025 21:20:57 +0800 Subject: [PATCH] Added comments to Readme.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index f18e4f3..2dc317d 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ Django + Nextjs Template: Standardised CFC Tech Stack - **Node.js 18+** and **npm** - [Download here](https://nodejs.org/) - **uv 0.8+** (Python package manager) - [Installation guide](https://docs.astral.sh/uv/getting-started/installation/) +-- **Next.js** use this command in bash npm install -g next ### Installation Steps @@ -111,24 +112,30 @@ python manage.py test ```bash cd client +### Start development server ### # Development server npm run dev +### Start production server ### # Build for production npm run build # Start production server npm start +### Checks for code problems ### # Run linting npm run lint +### Fix found code problems ### # Fix linting issues npm run lint:fix +### Checks for typescript issues ### # Type checking npm run typecheck +### Formats code, Technically its the Prettier extension ### # Format code npm run format ```