Paragliding Tasks Checker
Created: 9/20/2021, 12:00:00 AM
It's so easy to build react apps these days. Over two nights, I knocked up a quick website to be able to upload igc flight files, and an xctask files to locally compute if you managed to hit the targets.
It's something to play with more later, but I'm hoping to start putting these widgets into my logbook app to be able to log flights against tasks when they're done.
The app is hosted on github
Source code: https://github.com/scottyob/paragliding-task-checker
I followed this guide to host on github pages. It basically entailed:
- Adding homepage in package.json
- Adding in predeploy and deploy scripts package.json
"scripts": {
//...
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
}
- running
yarn run deploy
to deploy it.