Upgrades Ubuntu 16
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 1: | Line 1: | ||
− | 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'''. We will also assume your installed dreamfactory in < | + | 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'''. We will also assume your installed dreamfactory in <code>/opt/dreamfactory</code> just like in the '''Installation''' instructions. |
# Navigate to the install directory | # Navigate to the install directory |
Revision as of 15:18, 21 October 2016
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. We will also assume your installed dreamfactory in /opt/dreamfactory
just like in the Installation instructions.
- Navigate to the install directory
-
$ cd /opt/dreamfactory
-
- Stash and changes tracked by git
-
$ git stash
-
- Get the latest code
-
$ git checkout master
-
$ git pull origin master
-