Managing your local server - bym-refitted/backyard-monsters-refitted GitHub Wiki
Updating Local Server from Main GitHub Repository
To start make sure you are in the your server directory:
cd server
⚡ To keep your local server up-to-date and in-sync with the main GitHub repository, run the following command:
git stash && git pull && bun install && bun migration:up
This will:
- 📦 Stash any local changes you've made
- 📦 Pull the latest changes from the main repository
- 📦 Install dependencies that may be available
- 📦 Run database migrations to update your database schema