The offcial website of Langpie, the site is generated by GitHub Actions.
- Source code: branch: sources
- Pages: branch: master
- Archive: branch: archive
langpie.github.io
├── README.md
├── docs
│ ├── about.md
│ ├── docs
│ │ ├── getting-start
│ │ │ ├── preparation.md
│ │ │ └── tools.md
│ │ ├── goals
│ │ │ └── overview.md
│ │ ├── hardware
│ │ │ └── drawpcb.md
│ │ └── software
│ │ └── basic.md
│ ├── index.md
│ ├── sidebar_contents
│ │ ├── en.js
│ │ └── zh.js
│ └── zh
│ ├── about.md
│ ├── docs
│ │ ├── getting-start
│ │ │ ├── preparation.md
│ │ │ └── tools.md
│ │ ├── goals
│ │ │ └── overview.md
│ │ ├── hardware
│ │ │ └── drawpcb.md
│ │ └── software
│ │ └── basic.md
│ └── index.md
├── icon.png
└── package.json
- Clone langpie.github.io repository to your computer
git clone https://github.com/langpie/langpie.github.io.git
- Enter langpie.github.io folder, install dependencies
npm i # or yarn install
- Start realtime development
npm run docs:dev # or yarn docs:dev
- Build and publish
npm run docs:build # or yarn docs:build