Upgrades MacOS
From DreamFactory
Drewpearce (Talk | contribs) (Created page with "Upgrading DreamFactory involves getting the required code via git and composer and then using the Laravel artisan command migrate system data and settings. In these instructio...") |
Drewpearce (Talk | contribs) |
||
Line 15: | Line 15: | ||
# Migrate the system data | # Migrate the system data | ||
#* <source lang="bash">$ php artisan migrate --seed</source> | #* <source lang="bash">$ php artisan migrate --seed</source> | ||
− | |||
# Clear caches | # Clear caches | ||
#* <source lang="bash">$ php artisan config:clear</source> | #* <source lang="bash">$ php artisan config:clear</source> | ||
#* <source lang="bash">$ php artisan cache:clear</source> | #* <source lang="bash">$ php artisan cache:clear</source> | ||
# Log in to your instance in the browser (you may need to refresh/clear browser cache.) Go to the Config tab and confirm the instance was upgraded. | # Log in to your instance in the browser (you may need to refresh/clear browser cache.) Go to the Config tab and confirm the instance was upgraded. |
Revision as of 13:18, 26 June 2017
Upgrading DreamFactory involves getting the required code via git and composer and then using the Laravel artisan command migrate system data and settings. In these instructions, we will assume you are logged in as a user named dfuser. Anywhere you see this username substitute your own. This should be the same user you used for installation. We will also assume your installed dreamfactory in /usr/local/var/dreamfactory
just like in the Installation instructions.
- Navigate to the install directory
-
$ cd /usr/local/var/dreamfactory
-
- Stash and changes tracked by git
-
$ git stash
-
- Get the latest code
-
$ git checkout master
-
$ git pull origin master
-
- Update composer
-
$ composer self-update
-
- User composer to get dependencies
- Note for commercial users: Copy your commercial license files into the working directory before running this command.
-
$ composer install --no-dev
- Migrate the system data
-
$ php artisan migrate --seed
-
- Clear caches
-
$ php artisan config:clear
-
$ php artisan cache:clear
-
- Log in to your instance in the browser (you may need to refresh/clear browser cache.) Go to the Config tab and confirm the instance was upgraded.