16 lines
561 B
Bash
16 lines
561 B
Bash
|
|
#!/run/current-system/sw/bin/fish
|
||
|
|
|
||
|
|
rsync -avz --delete \
|
||
|
|
--exclude '.venv' --exclude '__pycache__' --exclude '*.pyc' \
|
||
|
|
--exclude 'recordings/' --exclude 'recordings.db' --exclude 'keys/' \
|
||
|
|
--exclude 'data/' --exclude '.git' \
|
||
|
|
-e 'ssh -p 2252' \
|
||
|
|
/work/projects/phone_recorder/claude/server/ \
|
||
|
|
thallock@10.0.0.45:/work/hosting/recordings/
|
||
|
|
|
||
|
|
# Deploy React frontend
|
||
|
|
rsync -avz --delete \
|
||
|
|
-e 'ssh -p 2252' \
|
||
|
|
/work/projects/view_recordings/designer_export/ \
|
||
|
|
thallock@10.0.0.45:/work/hosting/recordings-viewer/
|