This is a project put together by MudCoders. The current plan is to build a MUD using Rust.
Follow these instructions to setup Vagrant on your operating system.
On machines with apt-get, you can use this command.
sudo apt-get install vagrant
On machines with pacman, you can use this command.
sudo pacman -S vagrant
On Windows, go to the Vagrant website and download the installer.
git clone the project
cd /dir/with/vagrantfile
vagrant up
vagrant ssh
cd /vagrant
make
make test
vagrant up
: This command looks at the vagrantfile and downloads/builds a VM based on the specifications
of the file. It also provisions and installs a set of tools used by the project. Finally, it mounts
the local folder to the /vagrant
folder on the VM.
vagrant ssh
: This command opens an SSH shell on the VM and allows you to run commands on the VM.