File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ Django + Nextjs Template: Standardised CFC Tech Stack
88
99- ** Node.js 18+** and ** npm** - [ Download here] ( https://nodejs.org/ )
1010- ** uv 0.8+** (Python package manager) - [ Installation guide] ( https://docs.astral.sh/uv/getting-started/installation/ )
11+ -- ** Next.js** use this command in bash npm install -g next
1112
1213### Installation Steps
1314
@@ -111,24 +112,30 @@ python manage.py test
111112``` bash
112113cd client
113114
115+ # ## Start development server ###
114116# Development server
115117npm run dev
116118
119+ # ## Start production server ###
117120# Build for production
118121npm run build
119122
120123# Start production server
121124npm start
122125
126+ # ## Checks for code problems ###
123127# Run linting
124128npm run lint
125129
130+ # ## Fix found code problems ###
126131# Fix linting issues
127132npm run lint:fix
128133
134+ # ## Checks for typescript issues ###
129135# Type checking
130136npm run typecheck
131137
138+ # ## Formats code, Technically its the Prettier extension ###
132139# Format code
133140npm run format
134141```
You can’t perform that action at this time.
0 commit comments