mirror of
https://github.com/NVIDIA/dgx-spark-playbooks.git
synced 2026-04-23 02:23:53 +00:00
31 lines
607 B
Markdown
31 lines
607 B
Markdown
# Frontend Application
|
|
|
|
This directory contains the Next.js frontend application for the txt2kg project.
|
|
|
|
## Structure
|
|
|
|
- **app/**: Next.js app directory with pages and routes
|
|
- **components/**: React components
|
|
- **contexts/**: React context providers
|
|
- **hooks/**: Custom React hooks
|
|
- **lib/**: Utility functions and shared logic
|
|
- **public/**: Static assets
|
|
- **styles/**: CSS and styling files
|
|
- **types/**: TypeScript type definitions
|
|
|
|
## Development
|
|
|
|
To start the development server:
|
|
|
|
```bash
|
|
cd frontend
|
|
npm install
|
|
npm run dev
|
|
```
|
|
|
|
## Building for Production
|
|
|
|
```bash
|
|
cd frontend
|
|
npm run build
|
|
``` |