``add development and backup scripts for Ionic mobile project, including dev script, rsync backup script, and express commit script``

This commit is contained in:
louiscklaw
2025-05-12 19:19:39 +08:00
parent 2c7316786c
commit ee0aa0353b
3 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -ex
npm run dev

View File

@@ -0,0 +1,8 @@
#!/usr/bin/env bash
set -ex
rsync -avh --exclude="node_modules" ../ionic_mobile/ \
../_archive/ionic_mobile_draft_012
echo "done"

View File

@@ -0,0 +1,8 @@
#!/usr/bin/env bash
set -ex
git add src
git commit -m'update,'
echo "done"