Skip to content

Commit

Permalink
Work on README x86 build instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
nlebeck committed Nov 16, 2017
1 parent dddb482 commit fa6060f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
23 changes: 12 additions & 11 deletions README.md
Expand Up @@ -38,25 +38,26 @@ deploying applications across servers.
$ cd sapphire
$ mvn package

2. Build an example app:
2. Compile the stubs for the core Sapphire library:

$ cd ../example_apps/HanksTodo
$ mvn package

3. Compile the stubs for the core Sapphire library:

$ cd ../../generators
$ cd ../generators
$ python generate_policy_stubs.py

4. Compile the stubs for the example app:
3. Build the core Sapphire library again so that it includes the stubs:

$ python generate_app_stubs.py
$ cd ../sapphire
$ mvn package

5. Build the core Sapphire library again so that it includes the stubs:
4. Build an example app:

$ cd ../sapphire
$ cd ../example_apps/HanksTodo
$ mvn package

5. Compile the stubs for the example app:

$ cd ../../generators
$ python generate_app_stubs.py

6. Build the example app again so that it includes the stubs:

$ cd ../example_apps/HanksTodo
Expand Down
8 changes: 4 additions & 4 deletions deployment/app.py
@@ -1,7 +1,7 @@
app_class = "sapphire.appexamples.hankstodo.cloud.TodoStart"
app_name = "HanksTodo"
app_client = "sapphire.appexamples.hankstodo.device.TodoActivity"

app_class = "sapphire.appexamples.minnietwitter.cloud.MinnieTwitterStart"
app_name = "MinnieTwitter"
app_client = "sapphire.appexamples.minnietwitter.device.generator.TwitterWorldGenerator"

app_class = "sapphire.appexamples.hankstodo.cloud.TodoStart"
app_name = "HanksTodo"
app_client = "sapphire.appexamples.hankstodo.device.TodoActivity"

0 comments on commit fa6060f

Please sign in to comment.