https://github.com/prodigypnp/pnp-website
ProdigyPNP's official documentation and website!
https://github.com/prodigypnp/pnp-website
docs docusaurus
Last synced: about 1 year ago
JSON representation
ProdigyPNP's official documentation and website!
- Host: GitHub
- URL: https://github.com/prodigypnp/pnp-website
- Owner: ProdigyPNP
- Created: 2022-10-05T07:38:15.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-02-17T02:10:42.000Z (over 2 years ago)
- Last Synced: 2025-03-29T04:12:49.551Z (about 1 year ago)
- Topics: docs, docusaurus
- Language: JavaScript
- Homepage: https://prodigypnp.com
- Size: 341 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Website
This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator.
### Installation
```sh
pnpm install
```
### Local Development
```sh
pnpm start
```
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
### Build
```sh
pnpm build
```
This command generates static content into the `build` directory and can be served using any static contents hosting service.
### Deployment
Using SSH:
```sh
USE_SSH=true
pnpm deploy
```
Not using SSH:
```sh
GIT_USER=
pnpm deploy
```
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.