Skip to content

Commit

Permalink
Update installation instructions and added Container Lab temp files t…
Browse files Browse the repository at this point in the history
…o .gitignore
  • Loading branch information
mrmrcoleman committed Feb 21, 2024
1 parent 0ff2299 commit cf20fe8
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 2 deletions.
2 changes: 2 additions & 0 deletions netbox-event-driven-architectures/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
lab/*.bak
lab/clab*/
40 changes: 38 additions & 2 deletions netbox-event-driven-architectures/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
# Clone the repo
```
# git clone https://github.com/netboxlabs/netbox-learning.git
```


# Installation instructions

- Install ContainerLab
- Make a venv
- Install requirements

- Create and activate a virtual environment
```
# python3 -m venv venv
# source venv/bin/activate
(venv) #
```

- Install requirements.txt
```
pip install -r requirements.txt
```


- Install NATs
```
docker pull nats:latest
docker run -p 4222:4222 -ti nats:latest
```


# Start the lab

```
cd lab
clab deploy
```

# Start the message bus (NATs)



0 comments on commit cf20fe8

Please sign in to comment.