You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ If you're looking to play with the code, keep reading.
22
22
23
23
The product is arranged in a single repository, with subdirectories arranged by language. See the individual READMEs for instructions on building the code.
24
24
25
-
*[Devbox](devbox-photon/README.md): Devbox uses [Vagrant](http://vagrantup.com) to create a small standalone deployment of Photon Controller for test purposes.
25
+
*[Devbox](devbox/README.md): Devbox uses [Vagrant](http://vagrantup.com) to create a small standalone deployment of Photon Controller for test purposes.
26
26
*[Java](java/README.md): Most of the Photon Controller management plane is written in Java, with many individual services implemented on top of the [Xenon framework](http://vmware.github.io/xenon).
27
27
*[Python](python/README.md): The ESX agent and its test and analysis collateral are implemented in Python.
28
28
*[Ruby](ruby/README.md): The Photon Controller CLI is implemented in Ruby, as are the integration tests for the product.
@@ -38,7 +38,7 @@ If you have not signed our contributor license agreement (CLA), our bot will upd
38
38
All pull requests satisfy the following criteria:
39
39
40
40
1. Pass **unit tests** according to the instructions in the appropriate language-specific README file.
41
-
2. Pass **integration tests** according to the instructions for [Devbox](devbox-photon/README.md).
41
+
2. Pass **integration tests** according to the instructions for [Devbox](devbox/README.md).
42
42
43
43
We will run any changes through our own validation process which ensures that both conditions are met, but it's in everyone's interest if you take care of this on your own first.
Copy file name to clipboardExpand all lines: devbox/README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,13 +30,13 @@ In order to control the devbox VM, Vagrant needs a plugin for Photon OS. The plu
30
30
31
31
#### Start and provision devbox
32
32
33
-
We use Gradle for building and provisioning the devbox. From `/java` or `/devbox-photon`, run:
33
+
We use Gradle for building and provisioning the devbox. From `/java` or `/devbox`, run:
34
34
35
35
./gradlew :devbox:up
36
36
37
37
This will bring up Vagrant, create one VM (two if ENABLE_AUTH is set to `true`), build all service containers, then start them. Your devbox is now ready.
38
38
39
-
If devbox is being used as a management VM, you need to seed a deployment document into Photon Controller for some system properties. These properties can be set from environment variables (see below). From `/devbox-photon`, run:
39
+
If devbox is being used as a management VM, you need to seed a deployment document into Photon Controller for some system properties. These properties can be set from environment variables (see below). From `/devbox`, run:
40
40
41
41
./seed_deployment.sh
42
42
@@ -89,9 +89,9 @@ If for some reason devbox VM cannot be destroyed via Vagrant command (`vagrant d
## Controlling devbox behavior with environment variables
117
117
@@ -315,4 +315,4 @@ To start everything:
315
315
These start scripts will stop, remove, and restart their respective service containers.
316
316
317
317
## Gradle wrapper
318
-
The root of the Gradle project is under `/java`, so a wrapper is provided under `/devbox-photon` that forwards calls to `/java/gradlew`. This is just for the convenience of invoking `./gradlew` from `/devbox-photon` without having to change directories or open another shell.
318
+
The root of the Gradle project is under `/java`, so a wrapper is provided under `/devbox` that forwards calls to `/java/gradlew`. This is just for the convenience of invoking `./gradlew` from `/devbox` without having to change directories or open another shell.
0 commit comments