| runme | ||||
|---|---|---|---|---|
|
This is the primary documentation website for Runme, located at docs.runme.dev. It primarily serves markdown using Docusaurus 2 to help runme users find installation, configuration, features, intergrations, faq and other information about using or contributing to Runme the open source project (runme.dev).
$ npm install broken-link-checker -gRun it against production site.
$ rm -f links.log; npx blc https://docs.runme.dev -ro > links.log
# expected to fail if any non 2xx/3xx status code occurAll 404s.
$ grep "HTTP_404" links.log | sortIgnore externals.
$ cat links.log | grep -v "https://github.com" | grep -v "https://marketplace" | grep "HTTP_404" | grep -v "/static/videos/"Install all the dependencies using npm.
npm installWhen developing locally we remove the build directory to avoid any confusion and run the docusaurus server.
rm -rf build/
npm run startMost changes are reflected live without having to restart the server.
To build the website locally, or to test/preview the build process that will run in CI.
npm run buildThis command generates static content into the build directory and can be served using any static contents hosting service.
npm i @docusaurus/core@latest @docusaurus/plugin-pwa@latest @docusaurus/preset-classic@latest @docusaurus/module-type-aliases@latest @docusaurus/types@latestcd build; python3 -m http.server 9000This website is auto-deployed via Vercel's GitHub integration, when your branch is merged into main.
The status can be found here: https://vercel.com/stateful/docs-runme-dev