stitch-a-ton/README.md

29 lines
No EOL
528 B
Markdown

# Stitch a Ton
Solution by Meizar (meizar.rimadana@formulatrix.com)
## Requirements
- .Net SDK 6.0
- OpenCVSharp4 4.11
## Publish
Publish te project with targeting `linux-arm64` runtime and `self-contained`
```
cd ./WebApp
dotnet publish -r linux-arm64 -c release --self-contained
```
Transfer this published folder into Raspberry Pi
```
bin/release/net6.0/linux-arm64/publish
```
## Run
On the Raspberry Pi, go to the uploaded folder.
Make it executable
```
sudo chmod +x WebApp
```
Run the program
```
sudo ./WebApp
```