Files
clean-cuts/README.md
BlossomiShymae 56f5636603 Update README.md
2024-05-02 21:15:17 -05:00

81 lines
907 B
Markdown

# [Clean Cuts](https://blossomishymae.github.io/clean-cuts/)
Making game data viewable in a human-friendly format.
![](preview.png)
## Contributors
<a href="https://github.com/BlossomiShymae/clean-cuts/graphs/contributors">
<img src="https://contrib.rocks/image?repo=BlossomiShymae/clean-cuts" />
</a>
## Setup
Make sure to install the dependencies:
```bash
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
```
## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev
# pnpm
pnpm run dev
# yarn
yarn dev
# bun
bun run dev
```
## Production
Build the application for production:
```bash
# npm
npm run build
# pnpm
pnpm run build
# yarn
yarn build
# bun
bun run build
```
Locally preview production build:
```bash
# npm
npm run preview
# pnpm
pnpm run preview
# yarn
yarn preview
# bun
bun run preview
```