stitch-a-ton/README.md

29 lines
528 B
Markdown
Raw Normal View History

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