mirror of
https://github.com/runyanjake/jake.runyan.dev.git
synced 2025-10-04 13:57:29 -07:00
27 lines
611 B
Markdown
27 lines
611 B
Markdown
# jake.runyan.dev
|
|
A personal website/blog, powered by the content-first & react-based web framework Docusaurus.
|
|
|
|
### First Time Setup
|
|
|
|
1. Install some node version >=18
|
|
|
|
`curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash`
|
|
|
|
`nvm list-remote`
|
|
|
|
`nvm install 18.12.0`
|
|
|
|
2. Create node project, using classic theme
|
|
|
|
`npx create-docusaurus@latest website classic`
|
|
|
|
### Running the Project
|
|
|
|
1. Run locally with nvm
|
|
|
|
`cd website && npm run start`
|
|
|
|
2. Run as container with docker-compose
|
|
|
|
docker-compose build && docker-compose up -d && docker logs -f website
|