-
Notifications
You must be signed in to change notification settings - Fork 3
Update Guide
Yasin Dahi edited this page Dec 17, 2021
·
1 revision
- Studio is managed via Github
- Updating Studio require pulling the latest code from Github
- In order to pull code from Github, you will need to be able to SSH into your server
- You should always perform a backup before updating
(incomplete)
- Move into the root project folder with
cd /path/to/your/site(info below) - Get the latest code metadata:
git fetch - Get the current status of your local codebase:
git status - If everything looks good, get the latest code:
git pull - Install the latest code:
composer install --no-dev - Check for database updates:
drush udb - Clear caches:
drush cr - Check your site to ensure everything is working fine
tbd