Go to file
mdnapo 0da1ccd480
All checks were successful
Build a new image for the MycroForge docs / build (push) Has been skipped
Used package.json for versioning
2024-10-19 13:59:01 +02:00
.gitea/workflows Used package.json for versioning 2024-10-19 13:59:01 +02:00
.k8s Initial commit 2024-10-06 13:24:20 +02:00
docs Fixed command plugins section 2024-10-13 13:22:00 +02:00
src Initial commit 2024-10-06 13:24:20 +02:00
static Initial commit 2024-10-06 13:24:20 +02:00
.dockerignore Initial commit 2024-10-06 13:24:20 +02:00
.gitignore Initial commit 2024-10-06 13:24:20 +02:00
babel.config.js Initial commit 2024-10-06 13:24:20 +02:00
Dockerfile Initial commit 2024-10-06 13:24:20 +02:00
docusaurus.config.ts Initial commit 2024-10-06 13:24:20 +02:00
package-lock.json Initial commit 2024-10-06 13:24:20 +02:00
package.json Used package.json for versioning 2024-10-19 13:59:01 +02:00
README.md Initial commit 2024-10-06 13:24:20 +02:00
sidebars.ts Initial commit 2024-10-06 13:24:20 +02:00
tsconfig.json Initial commit 2024-10-06 13:24:20 +02:00
yarn.lock Initial commit 2024-10-06 13:24:20 +02:00

Website

This website is built using Docusaurus, a modern static website generator.

Installation

$ yarn

Local Development

$ yarn start

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

$ yarn build

This command generates static content into the build directory and can be served using any static contents hosting service.

Deployment

Using SSH:

$ USE_SSH=true yarn deploy

Not using SSH:

$ GIT_USER=<Your GitHub username> 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.

Build Docker image

docker build -t git.devdisciples.com/devdisciples/m4gdocs:latest -t m4gdocs:latest .

Push Docker image

docker push git.devdisciples.com/devdisciples/m4gdocs:latest

Update in Kubernetes Cluster

Update the image by deleting the old pod, this will automatically pull in the latest image and deploy it. Run the following command on the relevant node to achieve this.

kubectl delete pods -l app=m4g-docs