https://github.com/cozystack/website
Cozystack website and documentation
https://github.com/cozystack/website
documentation hacktoberfest
Last synced: 4 months ago
JSON representation
Cozystack website and documentation
- Host: GitHub
- URL: https://github.com/cozystack/website
- Owner: cozystack
- License: apache-2.0
- Created: 2024-02-12T17:54:46.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-10-07T09:43:21.000Z (4 months ago)
- Last Synced: 2025-10-07T10:30:36.261Z (4 months ago)
- Topics: documentation, hacktoberfest
- Language: HTML
- Homepage: https://cozystack.io
- Size: 6.78 MB
- Stars: 5
- Watchers: 1
- Forks: 16
- Open Issues: 35
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cozystack-website
Cozystack.io website
## Prechecks
```bash
go version
hugo version
```
## Install go
You will need a go version 1.14 or higher to run the website.
[instructions](https://go.dev/doc/install)
```bash
wget https://go.dev/dl/go1.24.2.linux-amd64.tar.gz -P /tmp
rm -rf /usr/bin/go && sudo tar -C /usr/local -xzf /tmp/go1.24.2.linux-amd64.tar.gz
export PATH=$PATH:/usr/local/go/bin
go version
```
## Install hugo
Be sure to download the extended version of Hugo from the GitHub releases page. The binary that was installed by your
operating system package manager may (and most likely will) not work correctly.
```bash
wget https://github.com/gohugoio/hugo/releases/download/v0.122.0/hugo_extended_0.122.0_linux-amd64.tar.gz
tar -xzf hugo_extended_0.122.0_linux-amd64.tar.gz
chmod +x /usr/local/bin/hugo
```
## Run docs
```bash
hugo serve
```