@@ -22,7 +22,7 @@ Before you begin, ensure you have the following installed on your system:
2222- ** Disk space** : At least 10GB free space
2323- ** Network** : Internet connection for downloading dependencies and Docker images
2424
25- ## Step 1: Install uv
25+ ## Step 1: install uv
2626
2727If you don't have ` uv ` installed, follow the installation instructions for your operating system:
2828
@@ -40,7 +40,7 @@ Verify the installation:
4040uv --version
4141```
4242
43- ## Step 2: Clone the repository
43+ ## Step 2: clone the repository
4444
4545Clone the demo repository to your local machine:
4646
@@ -49,7 +49,7 @@ git clone https://github.com/opsmill/infrahub-demo.git
4949cd infrahub-demo
5050```
5151
52- ## Step 3: Install Python dependencies
52+ ## Step 3: install Python dependencies
5353
5454Use ` uv ` to install all required Python packages:
5555
@@ -63,7 +63,7 @@ uv sync --group dev
6363
6464This creates a virtual environment and installs all necessary packages including the Infrahub SDK.
6565
66- ## Step 4: Set up environment variables
66+ ## Step 4: set up environment variables
6767
6868Create environment variables for connecting to Infrahub. You can either export them directly or create a ` .env ` file:
6969
@@ -76,7 +76,7 @@ export INFRAHUB_API_TOKEN="06438eb2-8019-4776-878c-0941b1f1d1ec"
7676The API token above is a demo token for local development only. Do not use this in production environments.
7777:::
7878
79- ## Step 5: Start Infrahub
79+ ## Step 5: start Infrahub
8080
8181Start the Infrahub containers using the included invoke task:
8282
@@ -100,7 +100,7 @@ You should see containers for:
100100- ` infrahub-message-queue ` - RabbitMQ message broker
101101- ` infrahub-git ` - Git repository server
102102
103- ## Step 6: Access the Infrahub web interface
103+ ## Step 6: access the Infrahub web interface
104104
105105Once the containers are running, open your web browser and navigate to:
106106
@@ -113,11 +113,11 @@ You should see the Infrahub login screen. Use the default credentials:
113113- ** Username** : ` admin `
114114- ** Password** : ` infrahub `
115115
116- ## Step 7: Bootstrap the demo data
116+ ## Step 7: bootstrap the demo data
117117
118118Now that Infrahub is running, load the demo schemas and data. You can use the automated bootstrap script or run the steps manually.
119119
120- ### Option A: Automated bootstrap (recommended)
120+ ### Option A: automated bootstrap (recommended)
121121
122122Run the bootstrap script to load everything in one command:
123123
@@ -127,7 +127,7 @@ Run the bootstrap script to load everything in one command:
127127
128128This script performs all the steps in Option B automatically.
129129
130- ### Option B: Manual bootstrap
130+ ### Option B: manual bootstrap
131131
132132If you prefer to run each step individually:
133133
@@ -155,7 +155,7 @@ uv run infrahubctl object load data/events/
155155Loading schemas and data can take several minutes. Watch the console output to monitor progress.
156156:::
157157
158- ## Step 8: Verify the installation
158+ ## Step 8: verify the installation
159159
160160To verify that everything is set up correctly:
161161
0 commit comments