Difference between revisions of "Upgrading Dreamfactory within Gold"
From DreamFactory
m (Charlesharmon moved page DFE:Upgrading Dreamfactory within Gold to Upgrading Dreamfactory within Gold) |
|||
Line 1: | Line 1: | ||
− | + | ==SSH into your DreamFactory Gold server== | |
+ | Once you're in your DreamFactory Gold instance, you'll need access to /var/www. | ||
+ | |||
+ | First, we will upgrade the DreamFactory "Base" installation for all of your Gold instances. | ||
+ | <source lang="bash"> | ||
+ | $ cd /var/www/launchpad | ||
+ | $ sudo git pull | ||
+ | </source> | ||
+ | This will pull the latest master branch. Now you will need to update the dependencies: | ||
+ | <source lang="bash"> | ||
+ | $ sudo composer install --no-dev | ||
+ | </source> | ||
+ | Once composer finishes, you will be able to run any Database Migrations you'll need for the base dreamfactory database | ||
+ | <source lang="bash"> | ||
+ | $ php artisan migrate --seed | ||
+ | </source> |
Revision as of 20:44, 6 October 2016
SSH into your DreamFactory Gold server
Once you're in your DreamFactory Gold instance, you'll need access to /var/www.
First, we will upgrade the DreamFactory "Base" installation for all of your Gold instances.
$ cd /var/www/launchpad $ sudo git pull
This will pull the latest master branch. Now you will need to update the dependencies:
$ sudo composer install --no-dev
Once composer finishes, you will be able to run any Database Migrations you'll need for the base dreamfactory database
$ php artisan migrate --seed