-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,13 @@ | ||
Single binary, launches streaming server within app. | ||
The naprr executable runs as a single binary, and launches its own streaming server instance within the application. | ||
|
||
Unzip files shold have naprr executable, an /in directory and a /templates directory. | ||
The unzipped binary files should have the `naprr` executable, an `/in` directory and a `/templates` directory. The `/templates` directory contains templates for the various report formats, in [Golang's template language](https://golang.org/pkg/text/template/). The `/in` directory contains zipped XML files to be processed by the `naprr` executable; the zip distribution comes packaged with `/in/master_nap.xml.zip` as a test xml results file. This will get processed automatically when the executable is run. | ||
|
||
To process results file just use a terminal to cd to the naprr folder and run the naprr executable. | ||
To process the results file, just use a terminal to `cd `to the `naprr` folder and run the `naprr` executable. | ||
|
||
Zip distribution includes a test xml zip file in the /in directory - this will get processed automatically when the executable is run. | ||
All reports will be written to the `/out` directory; this contains summary reports at the top level, and then a folder for each school with relevant reports inside. | ||
|
||
All reports will be written to the /out directory; contains summary reports at the top level and then a folder for each school with relevant reports inside. | ||
All reports have been generated as requested, except for code frame_writing. For the code frame, we still need to understand the structure more clearly; but sensible real defaults have been put into the file from the results and reporting dataset, so the reports are structurally correct. | ||
|
||
All reports as requested except code frame_writing where we still need to understand the structure more clearly, but sensible real defaults are put into the file from the r/r dataset so structurally correct. | ||
To test the reporting engine only, as opposed to data parsing, delete the `/out` directory then run the `naprr` executable with the flag `-rewrite`. This will simply regenerate the reports without reloading the data. | ||
|
||
To test reporting engine only, as opposed to data parsing, delete the /out directory then run the naprr executable with the flag -rewrite this will simply regenerate the reports without reloading the data. | ||
|
||
Report formats all governed by template so can be modified, but will be better once a ui is in place. | ||
Report formats are all governed by templates so they can be modified, but will be better once a UI is in place. |