https://github.com/problem4j/problem4j.github.io
GitHub Pages for Problem4J project
https://github.com/problem4j/problem4j.github.io
docusaurus github-pages
Last synced: 18 days ago
JSON representation
GitHub Pages for Problem4J project
- Host: GitHub
- URL: https://github.com/problem4j/problem4j.github.io
- Owner: problem4j
- License: mit
- Created: 2025-12-28T20:35:11.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2026-05-23T12:57:42.000Z (25 days ago)
- Last Synced: 2026-05-30T04:30:18.289Z (18 days ago)
- Topics: docusaurus, github-pages
- Language: TypeScript
- Homepage: https://problem4j.github.io
- Size: 1.12 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Website
This website is built using [Docusaurus](https://docusaurus.io/), a modern static website generator.
## Installation
```bash
npm install
```
## Local Development
```bash
npm 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
```bash
npm run build
```
This command generates static content into the `build` directory and can be served using any static contents hosting service.
## Deployment
Using SSH:
```bash
USE_SSH=true npm run deploy
```
Not using SSH:
```bash
GIT_USER= npm run 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.