Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 752 Bytes

DEVELOPER.md

File metadata and controls

30 lines (20 loc) · 752 Bytes

Developer Guide

Prerequisites

You will need Hugo installed on your machine to build the documentation. You can download Hugo from the Hugo website. Make sure you install the same version as the one specified in the .github/workflows/hugo.yml file.

Creating a local HTTP server

To create a local HTTP server, if you are on Linux and have GNU make installed, run the following command:

make server

Alternatively, you can run the following commands on Linux or Windows:

cd docs
hugo server
cd docs
hugo server

The server will start and you can access the documentation at http://localhost:1313/Azure-Landing-Zones/.

You can stop the server by pressing Ctrl+C.