This is my personal website and blog. It is a place where I can share my thoughts, ideas, and projects with the world.
This website is built using Docusaurus, a modern static website generator.
https://docusaurus.io/docs/installation
yarn run start
If you want to run on a different port:
yarn run start -- --port 3001
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
yarn build
generates static content into the build
directory and can be served using any static contents hosting service.
This site uses Github Actions to trigger deployment to Github Pages. The deployment script is located in .github/workflows/deploy.yml
.
Docs can be found here.
-
If you blow away your node_modules directory, you may need to reset things, so try this:
yarn yarn build
-
On initial install, you will need to
yarn install
to generate theyarn.lock
file.