https://github.com/threenine/paybolt-docs
https://github.com/threenine/paybolt-docs
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/threenine/paybolt-docs
- Owner: threenine
- Created: 2023-08-11T10:18:55.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-26T08:51:38.000Z (almost 3 years ago)
- Last Synced: 2025-03-10T17:36:03.943Z (over 1 year ago)
- Language: Vue
- Size: 6.9 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PayBolt Documentation
## Setup
Make sure to install the dependencies:
```bash
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
```
## Development Server
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
```
Locally preview production build:
```bash
# npm
npm run preview
# pnpm
pnpm run preview
# yarn
yarn preview
```