Skip to content

Instantly share code, notes, and snippets.

View ZwangaMukwevho's full-sized avatar

Zwanga Mukwevho ZwangaMukwevho

View GitHub Profile
@ZwangaMukwevho
ZwangaMukwevho / Vagrantfile
Created June 2, 2025 15:15
Vagrant file for creating Ubuntu VM with dependencies installed
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/focal64"
config.vm.hostname = "doc-classification"
# Forward HTTP port 80 on guest to 8080 on host
config.vm.network "forwarded_port", guest: 80, host: 8080
# Forward SSH agent (optional)
config.ssh.forward_agent = true