-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from fpga-open-speech-tools/FE-Sobrero-patch-1
Update README.md
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 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,2 +1,22 @@ | ||
# OpenSpeechTools | ||
Web Application (Server + Client) In ASP.net | Server Code-> C# | Client -> Typescript | | ||
|
||
# Installation | ||
- Create armhf debug build to serve application from device | ||
``` | ||
$ dotnet publish -c Debug -r linux-arm | ||
``` | ||
- Copy debug build directory (<Project-Folder>/bin/Debug/netcoreapp3.1/linux-arm/publish) to device. | ||
|
||
- Add executable permissions to program on the device. | ||
|
||
``` | ||
$ chmod +x <location-of-webapp>/OpenSpeechTools | ||
``` | ||
|
||
- Change Directory to Executable location, Run. | ||
``` | ||
$ cd <location-of-webapp> | ||
$ ./OpenSpeechTools | ||
``` | ||
**Note:** The web application uses relative pathing, so the program must be run from the directory it's located in to properly serve the web application. |