mirror of
https://github.com/databasus/databasus.git
synced 2026-04-06 00:32:03 +02:00
40 lines
496 B
Markdown
40 lines
496 B
Markdown
# Frontend Development
|
|
|
|
## Development
|
|
|
|
To run the development server:
|
|
|
|
```bash
|
|
npm run dev
|
|
```
|
|
|
|
## Build
|
|
|
|
To build the project for production:
|
|
|
|
```bash
|
|
npm run build
|
|
```
|
|
|
|
This will compile TypeScript and create an optimized production build.
|
|
|
|
## Code Quality
|
|
|
|
### Linting
|
|
|
|
To check for linting errors:
|
|
|
|
```bash
|
|
npm run lint
|
|
```
|
|
|
|
### Formatting
|
|
|
|
To format code using Prettier:
|
|
|
|
```bash
|
|
npm run format
|
|
```
|
|
|
|
This will automatically format all TypeScript, JavaScript, JSON, CSS, and Markdown files.
|