https://github.com/cyf/cyf
Websites
https://github.com/cyf/cyf
Last synced: over 1 year ago
JSON representation
Websites
- Host: GitHub
- URL: https://github.com/cyf/cyf
- Owner: cyf
- License: mit
- Created: 2021-04-30T08:04:00.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-10-29T17:26:01.000Z (over 1 year ago)
- Last Synced: 2024-10-29T18:49:22.499Z (over 1 year ago)
- Language: TypeScript
- Homepage: https://chenyifaer.com
- Size: 3.01 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cyf
## Setup
Make sure to install the dependencies:
```bash
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
```
## Development
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev
# pnpm
pnpm run dev
# yarn
yarn dev
```
## Production
Build the application for production:
```bash
# npm
npm run build
# pnpm
pnpm run build
# yarn
yarn build
```
## Preview
Locally preview production build:
```bash
# npm
npm run preview
# pnpm
pnpm run preview
# yarn
yarn preview
```