https://github.com/royrusso/royrusso.github.io
My personal blog
https://github.com/royrusso/royrusso.github.io
Last synced: over 1 year ago
JSON representation
My personal blog
- Host: GitHub
- URL: https://github.com/royrusso/royrusso.github.io
- Owner: royrusso
- Created: 2014-04-11T16:51:04.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2025-02-17T20:34:06.000Z (over 1 year ago)
- Last Synced: 2025-02-17T20:37:22.509Z (over 1 year ago)
- Language: JavaScript
- Homepage: http://www.royrusso.com
- Size: 20.2 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My Blog
This is my [personal website and blog](https://www.royrusso.com/). It is a place where I can share my thoughts, ideas, and projects with the world.
_This website is built using [Docusaurus](https://docusaurus.io/), a modern static website generator._
## Configuration - Local
https://docusaurus.io/docs/installation
## Local Development
`yarn run start`
http://localhost:3000/
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.
## Build Static Files for Deployment
`yarn build` generates static content into the `build` directory and can be served using any static contents hosting service.
### Deployment
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](https://docusaurus.io/docs/deployment#deploying-to-github-pages).
## Troubleshooting
- 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 the `yarn.lock` file.