Skip to content
This repository was archived by the owner on May 30, 2019. It is now read-only.

Commit c42e9a9

Browse files
committed
chore: readme tweaks for ea3.1
1 parent c591034 commit c42e9a9

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# marklogic-samplestack
22

3-
README for Version 1.0.0-ea3
3+
README for Version 1.0.0-ea3.1
44

55
Samplestack is a comprehensive sample application that demonstrates how to build an effective MarkLogic application. Based on the idea of a "Question and Answer" website, Samplestack shows you how to integrate MarkLogic into a three-tier application architecture (browser, application server, and database).
66

appserver/java-spring/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## What is it?
44

5-
The implementation of samplestack that runs using
5+
The implementation of samplestack that runs using
66

77
* gradle as build tool
88
* Java as middle-tier development language
@@ -12,14 +12,14 @@ The implementation of samplestack that runs using
1212
This README covers running samplestack quickly, then documents each of the commands
1313
available to the Java developer as she iterates through code exploration.
1414

15-
## Quickstart
15+
## Quickstart
1616

1717
*To build and run:*
1818

1919
Before running anything here, you will need an EA-3 release of MarkLogic.
2020
Start this quickstart with it installed and running. By default this process will
21-
will secure MarkLogic with username admin, password admin. If you have already secured
22-
MarkLogic, you need to update gradle.properties with the admin credentials you used
21+
will secure MarkLogic with username admin, password admin. If you have already secured
22+
MarkLogic, you need to update gradle.properties with the admin credentials you used
2323
during the install and setup process.
2424

2525
You also need A JDK 1.7 or 1.8
@@ -32,8 +32,8 @@ The setup assumes you have MarkLogic Server running on your localhost and that y
3232
Started Application in X seconds...
3333
>Building 85% > :bootRun
3434
```
35-
When it stops like this, the app is ready to to visit. You can
36-
[exercise the application](http://localhost:8090) and [browse MarkLogic](http://localhost:8000/qconsole)
35+
When it stops like this, the app is ready to to visit. You can
36+
[exercise the application](http://localhost:8090) and [browse MarkLogic](http://localhost:8000/qconsole)
3737
This application server hosts the middle tier and a built version of an angular.js MVC browser application. This browser application is runable separately as well; see the [browser readme](../../browser/README.md) for instructions on how to set up and build with Samplestack's browser application.
3838

3939
*If you're stuck...*
@@ -42,22 +42,22 @@ Its possible that you will need to clean your environment, especially if you're
4242

4343
`./gradlew --stop` (if you've been using the gradle daemon.)
4444
`./gradlew clean`
45-
`./gradlew dbteardown`
45+
`./gradlew dbteardown`
4646
*gradle tasks used in Samplestack development*
4747

4848
* `./gradlew assemble` This command bootstraps the middle tier, runs tests, and builds the Java project. When it is done you have verified the unit tests and built samplestack.
4949
* `./gradlew tasks` Lists tasks available to the samplestack project.
50-
50+
5151
* `./gradlew dbConfigure` Incrementally applies configuration changes in ../../database/* to the MarkLogic instance.
5252
* `./gradlew dbConfigureClean` Removes cache info for configuration from build direcotiry (so next dbConfigure will process all files).
5353
* `./gradlew dbConfigureAll` dbConfigureClean then runs dbConfigure. Uploads all config files to MarkLogic.
54-
54+
5555
* `./gradlew bootRun` This command runs the middle tier and MarkLogic services. This project also contains a built version of the front-end angular application. If you want to use and exercise the front-end independently, see the sibling project in /browser for instructions on running the browser application
5656
* `./gradlew seedDataFetch` Fetches seed data from a remote location to the build directory.
5757
* `./gradlew seedDataExtract` Extracts the fetched seed data tgz to within the directory.
5858
* `./gradlew dbLoad` Runs seedDataFetch, seedDataExtract as dependencies (unless up-to-date) to load seed data.
5959
* `./gradlew dbClear` Deletes all data from the database.
60-
60+
6161
* ./gradlew eclipse is one way to set up this project for use in eclipse. [wiki link]
6262
* `./gradlew javadoc` These docs are built in build/docs/javadoc
6363

0 commit comments

Comments
 (0)