Skip to content

Environment Setup

This page covers how to set up the development environment for both the SurgingCloud .NET project and the documentation.

SurgingCloud .NET project

I am using JetBrains Rider with default settings to develop. Just import this project and you are ready to code.

Documentation

This project use Material for MkDocs to build the documentation. Do the following steps to set it up:

Create a virtual environment:

python -m venv venv
.\venv\Scripts\activate

Install the necessary packages:

pip install -r .\requirements.txt

Start a live server for mkdocs:

mkdocs serve