https://github.com/evocloud-dev/evocloud-paas-docs
Documentation and artifacts on how the evocloud-paas is designed, deployed, and operated.
https://github.com/evocloud-dev/evocloud-paas-docs
Last synced: 5 months ago
JSON representation
Documentation and artifacts on how the evocloud-paas is designed, deployed, and operated.
- Host: GitHub
- URL: https://github.com/evocloud-dev/evocloud-paas-docs
- Owner: evocloud-dev
- License: gpl-3.0
- Created: 2025-01-16T01:57:27.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-16T08:13:09.000Z (11 months ago)
- Last Synced: 2025-07-16T08:17:54.261Z (11 months ago)
- Language: HTML
- Size: 1.01 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
## EvoCloud Documentation Website
### Setting up hugo website:
_Reference: https://imfing.github.io/hextra/docs/getting-started/_
```
cd /opt
hugo new site evocloud-website-docs --format yaml --config config.yaml
cd /opt/evocloud-paas-docs/
hugo mod get github.com/imfing/hextra
hugo mod get github.com/axivo/website/global
```
### Create first content:
```
cd /opt/evocloud-paas-docs/
hugo new content/_index.md
hugo new content/docs/_index.md
hugo new content/tutorials/_index.md
hugo new content/overview/_index.md
```
### Preview the site locally:
```
cd /opt/evocloud-paas-docs/
hugo server --buildDrafts --disableFastRender
```
### Deploy to production:
```
cd /opt/evocloud-paas-docs/
hugo --minify --buildDrafts
```
### Updates:
To update all Hugo modules in your project to their latest versions:
```
hugo mod get -u
```
To update Hextra Theme only to the latest released version:
```
hugo mod get -u github.com/imfing/hextra
```