* Update info on Docs README about Next version @wetneb Does this look OK? I just tested and seems that this is how we can actually work and see the "current" docs and we didn't really document this anywhere as far as I can tell. So this README section is a good place? * fix numbered list
1.5 KiB
How to build these docs
We use Docusaurus 2 for our docs, a modern static website generator.
Requirements
Assuming you have Node.js installed (which includes npm), you can install Docusaurus with:
You will need to install Yarn before you can build the site.
npm install -g yarn
Installation
Once you have installed yarn, navigate to docs directory & set-up the dependencies.
cd docs
yarn
Local Development
yarn start
This command starts a local development server and opens up a browser window. Usually at the URL http://localhost:3000 Most changes are reflected live without having to restart the server.
Next version of OpenRefine docs
If you wish to work on the next version of docs for OpenRefine (master
branch) then you will need to:
- Git checkout our
master
branch - Edit files under
docs/docs/
- Preview changes with the URL kept pointing to http://localhost:3000/next which will automatically show changes live with yarn after you save a file.
Build
yarn build
This command generates static content into the build
directory and can be served using any static contents hosting service.
Deployment
GIT_USER=<Your GitHub username> USE_SSH=true 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.