27 lines
828 B
Markdown
27 lines
828 B
Markdown
|
---
|
||
|
layout: "docs"
|
||
|
page_title: "Rebuild - Getting Started"
|
||
|
sidebar_current: "gettingstarted-rebuild"
|
||
|
description: |-
|
||
|
When you are ready to come back to your project, whether it is tomorrow,
|
||
|
a week from now, or a year from now, getting it up and running is easy:
|
||
|
---
|
||
|
|
||
|
# Rebuild
|
||
|
|
||
|
When you are ready to come back to your project, whether it is tomorrow,
|
||
|
a week from now, or a year from now, getting it up and running is easy:
|
||
|
|
||
|
```
|
||
|
$ vagrant up
|
||
|
```
|
||
|
|
||
|
That's it! Since the Vagrant environment is already all configured via
|
||
|
the Vagrantfile, you or any of your coworkers simply have to run
|
||
|
`vagrant up` at any time and Vagrant will recreate your work environment.
|
||
|
|
||
|
## Next Steps
|
||
|
|
||
|
You have successfully managed the full lifecycle of your Vagrant environment.
|
||
|
Read on to learn about [providers](/docs/getting-started/providers.html).
|