Vagrant - Environnements de dev
Find a file
2025-01-08 15:20:52 -08:00
.ci Include generation of plain text version 2024-06-28 15:16:03 -07:00
.github Update testing dependency install 2024-11-01 13:41:55 -07:00
bin Remove activation at startup, add helper 2024-11-06 17:33:00 -08:00
binstubs Updates to make vagrant-spec work in CI 2022-04-25 12:26:50 -05:00
builtin Adds initial HCP config support 2023-09-07 17:26:10 -07:00
cmd/vagrant add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
contrib add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
ext/vagrant/vagrant_ssl add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
internal Adds initial HCP config support 2023-09-07 17:26:10 -07:00
keys Add ed25519 insecure private key 2023-06-26 15:06:02 -07:00
lib Update silenced hosts constant for registry 2024-11-11 15:49:42 -08:00
nix Update local development dependencies 2024-01-03 18:03:48 -08:00
plugins Update authentication handling with client wrapper 2024-11-11 15:49:42 -08:00
scripts add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
tasks Update test output to only show progress 2023-09-14 16:15:02 -07:00
templates Merge pull request #13379 from genericmoniker/patch-1 2024-07-10 15:20:13 -07:00
test Remove activation at startup, add helper 2024-11-06 17:33:00 -08:00
thirdparty/proto Update git submodule location 2022-04-25 12:26:25 -05:00
website send suggestions and documentation errors to support ticket 2025-01-08 15:20:52 -08:00
.copywrite.hcl update license year 2023-12-06 11:25:11 -08:00
.envrc Prevent complaints while in dev 2023-09-07 16:20:45 -07:00
.gitignore Update ignore file 2023-06-07 17:44:24 -07:00
.gitmodules Update git submodule location 2022-04-25 12:26:25 -05:00
.runner.sh add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
.vimrc .vimrc with vagrant tabstop settings 2013-10-22 08:24:58 +02:00
.yardopts YARD and some documentation 2010-09-22 09:43:30 -06:00
CHANGELOG.md Update files for new development 2.4.4.dev 2024-11-12 19:14:49 +00:00
Dockerfile add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
flake.lock Update local development dependencies 2024-01-03 18:03:48 -08:00
flake.nix Update local development dependencies 2024-01-03 18:03:48 -08:00
Gemfile add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
gen.go add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
go.mod Adds initial HCP config support 2023-09-07 17:26:10 -07:00
go.sum Adds initial HCP config support 2023-09-07 17:26:10 -07:00
LICENSE Update files for new development 2.4.4.dev 2024-11-12 19:14:49 +00:00
Makefile Add a force-test target to disable caching 2023-06-12 09:33:00 -07:00
Rakefile Adjust extension location for correct install path 2023-06-21 09:43:28 -07:00
README.md Add note about curl to README 2020-11-06 15:42:10 -08:00
RELEASE.md Update new release steps 2023-10-16 09:25:14 -07:00
shell.nix Start with straight copy/paste from waypoint project 2022-04-25 12:25:55 -05:00
tools.go Update Makefile output location and update targets 2023-05-17 14:37:46 -07:00
vagrant-config.hcl add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
vagrant-spec.config.example.rb add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
vagrant.gemspec Relax the webrick constraint 2024-11-11 16:44:41 -08:00
Vagrantfile Restore Vagrant development Vagrantfile 2022-07-28 14:12:50 -05:00
version.txt Update files for new development 2.4.4.dev 2024-11-12 19:14:49 +00:00

Vagrant

Vagrant is a tool for building and distributing development environments.

Development environments managed by Vagrant can run on local virtualized platforms such as VirtualBox or VMware, in the cloud via AWS or OpenStack, or in containers such as with Docker or raw LXC.

Vagrant provides the framework and configuration format to create and manage complete portable development environments. These development environments can live on your computer or in the cloud, and are portable between Windows, Mac OS X, and Linux.

Quick Start

Package dependencies: Vagrant requires bsdtar and curl to be available on your system PATH to run successfully.

For the quick-start, we'll bring up a development machine on VirtualBox because it is free and works on all major platforms. Vagrant can, however, work with almost any system such as OpenStack, VMware, Docker, etc.

First, make sure your development machine has VirtualBox installed. After this, download and install the appropriate Vagrant package for your OS.

To build your first virtual environment:

vagrant init hashicorp/bionic64
vagrant up

Note: The above vagrant up command will also trigger Vagrant to download the bionic64 box via the specified URL. Vagrant only does this if it detects that the box doesn't already exist on your system.

Getting Started Guide

To learn how to build a fully functional development environment, follow the getting started guide.

Installing from Source

If you want the bleeding edge version of Vagrant, we try to keep main pretty stable and you're welcome to give it a shot. Please review the installation page here.

Contributing to Vagrant

Please take time to read the HashiCorp Community Guidelines and the Vagrant Contributing Guide.

Then you're good to go!