running-tools

A collection of tools for runners and their coaches
git clone https://git.ashermorgan.net/running-tools/
Log | Files | Refs | README

commit 7fad27336f6be34ef6054dfe6b7f8fb571648b25
parent fdca62e501e010d8bed421ff3a046ed9c92f2f3e
Author: Asher Morgan <59518073+ashermorgan@users.noreply.github.com>
Date:   Sat,  7 Sep 2024 08:34:56 -0700

Update README links and remove old deploy script

Diffstat:
MREADME.md | 14+++++++-------
Dscripts/deploy.sh | 17-----------------
2 files changed, 7 insertions(+), 24 deletions(-)

diff --git a/README.md b/README.md @@ -1,19 +1,19 @@ # Running Tools A collection of tools for runners and their coaches. -Try it out [here](https://ashermorgan.github.io/running-tools/). +Try it out [here](https://apps.ashermorgan.net/running-tools/). ## Features -- [Batch Calculator](https://ashermorgan.github.io/running-tools/#/calculate/batch): +- [Batch Calculator](https://apps.ashermorgan.net/running-tools/#/calculate/batch): Create tables of the results of the other calculators over a range of inputs -- [Pace Calculator](https://ashermorgan.github.io/running-tools/#/calculate/paces): +- [Pace Calculator](https://apps.ashermorgan.net/running-tools/#/calculate/paces): Calculate distances and times that are at the same pace -- [Race Calculator](https://ashermorgan.github.io/running-tools/#/calculate/races): +- [Race Calculator](https://apps.ashermorgan.net/running-tools/#/calculate/races): Estimate equivalent results for races of different distances and/or times -- [Split Calculator](https://ashermorgan.github.io/running-tools/#/calculate/splits): +- [Split Calculator](https://apps.ashermorgan.net/running-tools/#/calculate/splits): Find splits, paces, and cumulative times for the segments of a race -- [Unit Calculator](https://ashermorgan.github.io/running-tools/#/calculate/units): +- [Unit Calculator](https://apps.ashermorgan.net/running-tools/#/calculate/units): Convert between different distance, time, speed, and pace units -- [Workout Calculator](https://ashermorgan.github.io/running-tools/#/calculate/workouts): +- [Workout Calculator](https://apps.ashermorgan.net/running-tools/#/calculate/workouts): Estimate target workout splits using previous race results ## Setup diff --git a/scripts/deploy.sh b/scripts/deploy.sh @@ -1,17 +0,0 @@ -#!/usr/bin/env sh - -# https://cli.vuejs.org/guide/deployment.html#github-pages - -# abort on errors -set -e - -VITE_API_DOMAIN=https://ashermorgan.github.io BASE_URL=/running-tools/ npm run build - -cd dist - -git init -git add -A -git commit -m 'deploy' -git push -f git@github.com:ashermorgan/running-tools.git master:gh-pages - -cd -