mirror of
https://github.com/PaiGramTeam/PaiGramDocs.git
synced 2024-11-22 07:07:47 +00:00
The documentation of PaiGram, used to record usage and development guidelines.
.github/workflows | ||
docs | ||
scripts | ||
.eslintignore | ||
.eslintrc.cjs | ||
.gitignore | ||
LICENSE | ||
package-lock.json | ||
package.json | ||
pnpm-lock.yaml | ||
README.md | ||
tsconfig.json | ||
unocss.config.ts | ||
vite.config.ts.js |
PaimonDocs
这里是 PaiGram 的说明文档,用来记录使用方法和开发指南。
欢迎在 Issues 中提出文档需求,或直接向本仓库提交文档。
Initialize the project locally
Environment requirements:
- Node.js 16.14.0+
1. Enable corepack & pnpm
If your Node.js version is lower than 16.13.0,Please install corepack first.
npm install -g corepack
corepack enable
corepack prepare pnpm@latest --activate
2. Clone the repository
git clone https://github.com/PaiGramTeam/PaiGramDocs.git
cd PaiGramDocs
2. Install dependencies
pnpm install
3. Start the development server
pnpm dev
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
4. Some useful commands
pnpm dev
Starts the development server.
pnpm build
Bundles your website into static files for production.
pnpm serve
Serves the built website locally.