This website is built using Docusaurus, a modern static website generator.
$ yarn
yarn install v1.22.22
warning package-lock.json found...
[1/5] π Validating package.json...
[2/5] π Resolving packages...
success Already up-to-date.
β¨ Done in 0.24s.
$ yarn start
yarn run v1.22.22
$ docusaurus start
[INFO] Starting the development server...
.....
[SUCCESS] Docusaurus website is running at: http://localhost:3000/
β Client
Compiled successfully in 3.91s
client (webpack 5.105.4) compiled successfully
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
$ npm run build
> memphis-mesh@0.0.0 build
> docusaurus build
[INFO] [en] Creating an optimized production build...
.....
[SUCCESS] Generated static files in "build".
[INFO] Use `npm run serve` command to test your build locally.
This command generates static content into the build directory and can be served using any static contents hosting service.
Using SSH:
USE_SSH=true yarn deploy
Not using SSH:
GIT_USER=<Your GitHub username> yarn 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.