https://github.com/hbjydev/docs.rockylinux.org
Rocky Linux's official learning platform & documentation site
https://github.com/hbjydev/docs.rockylinux.org
Last synced: about 2 months ago
JSON representation
Rocky Linux's official learning platform & documentation site
- Host: GitHub
- URL: https://github.com/hbjydev/docs.rockylinux.org
- Owner: hbjydev
- License: bsd-3-clause
- Created: 2021-01-26T16:48:28.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-09T16:23:02.000Z (over 4 years ago)
- Last Synced: 2025-01-26T16:44:34.649Z (4 months ago)
- Homepage:
- Size: 7.31 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# docs.rockylinux.org
[](https://learn.rockylinux.org)
[](https://results.pre-commit.ci/latest/github/rocky-linux/learn.rockylinux.org/main)The Rocky Linux learning platform + documentation site, built using
[Hugo](https://gohugo.io) and [TailwindCSS](https://tailwindcss.com).## Getting Started
### Requirements
This project requires that [Hugo](https://gohugo.io) and
[NodeJS](https://nodejs.org) be installed on your computer.Project dependencies are controlled by `npm`, so you can run `npm install` to
download and install those into the project folder.### Working on the Project
For the most part, you'll want to be able to preview your changes as you make
edits to the site. You can use the NPM script `start` to do this:```
$ npm install # ensure dependencies are installed...
$ npm start # start the hugo dev server...
```If you wish to compile the site into plain HTML/CSS/JS to load into a static
web server, however, you can run:```bash
$ npm install --production # ensure production dependencies are installed...
$ npm run build # build the hugo site...
```The folder `public/` will be created, and populated with the compiled Hugo
site.## Contributing
Contributions are *always* welcome. See [CONTRIBUTING.md](./CONTRIBUTING.md)
for our guidelines on how you should do that!