Files
dodep-simulator/remote-deploy.sh
T
root 3fe8a47e04 Dildo items, admin fixes, UI refactor
- Add 85 custom Dildo items (knife/skin pattern names, various rarities)
- Create Dildo Case config (hidden, items obtained via contracts)
- Fix admin user_detail.html nested script tag (Notify fallback removed)
- Fix admin cases.html embedded script tag
- Add notifications.js to admin base.html
- Fix admin users.html: use counts instead of relationship lists
- Replace old money format with |money filter across all templates
- Standardize nav partial (_nav.html) with active_page highlighting
- Fix RARITY_COLORS rename in activity sidebar
- Fix toast animation (forwards) and remove duplicate CSS
- Replace showToast() with Notify.* in upgrade page
- Add cs2_simulator.db and *.log to .gitignore
- Create remote-deploy.sh with DB exclusion
2026-07-05 16:15:12 +00:00

17 lines
560 B
Bash
Executable File

#!/bin/bash
# Deploy to remote server, excluding DB and other local-only files
rsync -av \
--exclude '.git' \
--exclude '__pycache__' \
--exclude '*.pyc' \
--exclude '.gitignore' \
--exclude 'cs2_simulator.db' \
--exclude '*.log' \
--exclude 'remote-deploy.sh' \
--delete \
/root/dodep-simulator/ \
root@zernmc.ru:/root/dodep/
ssh root@zernmc.ru "cd /root/dodep && sleep 1 && pkill -f 'frontend:app' 2>/dev/null; setsid python3 -m uvicorn frontend:app --host 0.0.0.0 --port 13669 > /tmp/frontend.log 2>&1 &"
echo "Deployed and restarted."