Version Update
YuNest is continuously iterating to provide a better experience. Choose the update method based on your deployment:
1. Cloud Platform (Cloudflare / EdgeOne)
If you deployed via Forking the repository and linking it to a Pages service:
Manual Update (Recommended)
- Go to your Forked YuNest repository on GitHub.
- Find the Sync fork button near the top.
- Click Update branch.
- GitHub will automatically pull the latest code from the upstream. Once finished, Cloudflare or EdgeOne will detect the change and automatically start building the new version.
Automatic Update
You can use GitHub Scheduled Actions or apps like "Pull" to automatically sync with the upstream. However, manual sync is generally safer and more controlled.
2. Local Deployment Update
If you are running the project locally or on a private server:
- Pull Latest Code:bash
git pull origin main - Update Dependencies:bash
npm install - Rebuild:bash
npm run build
Important Notes
- Config Compatibility: Updates usually do not affect your
.envsettings or data stored in GitHub/Browser. - Force Refresh: If you still see the old version after deployment, try
Ctrl + F5to force a browser refresh.