This commit is contained in:
Ladd 2025-12-28 20:02:43 -06:00
parent 1da0be3657
commit d561e9565d
2 changed files with 24 additions and 3 deletions

16
Readme.md Normal file
View File

@ -0,0 +1,16 @@
Gravity Simulator
=================
Runs in a browser. Just serve `index.html` and associated `css` and `js`.
Uses `npm` for `eslint`.
TODO
----
[ ] Object List
[ ] Object Detail
[ ] Selection Box
[ ] Left Button Panning
[ ] Middle Button Pause

11
commit
View File

@ -8,12 +8,17 @@ fi
set -eo pipefail set -eo pipefail
git checkout dev git checkout dev
./sync ./sync
if git diff; then if git diff; then
git add . git add .
git commit "$@"
git push
fi fi
git commit "$@"
git push
ssh lentilz " ssh lentilz "
set -oe pipefail set -oe pipefail
export NVM_DIR=\"\$HOME/.nvm\" export NVM_DIR=\"\$HOME/.nvm\"
@ -22,7 +27,7 @@ ssh lentilz "
git add . git add .
git stash git stash
git pull git pull
git stash apply git stash pop
npm i npm i
" "
echo >&2 echo >&2