11 lines
163 B
Makefile
11 lines
163 B
Makefile
# vagrant up
|
|
up:
|
|
@vagrant up
|
|
|
|
# vagrant up --provision
|
|
provision:
|
|
@vagrant up --provision
|
|
|
|
# vagrant destroy --force
|
|
destroy:
|
|
@vagrant destroy --force
|