Flip order for copy/pasters

This commit is contained in:
Dane Everitt 2018-07-28 13:26:22 -07:00
parent 9f1401df1e
commit 11a546b498
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53

View File

@ -39,14 +39,6 @@ this software on an OpenVZ based system you will — most likely — not
* `git` * `git`
* `composer` * `composer`
### Installing Composer
Composer is a dependency manager for PHP that allows us to ship everything you'll need code wise to operate the Panel. You'll
need composer installed before continuing in this process.
``` bash
curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer
```
### Example Dependency Installation ### Example Dependency Installation
The commands below are simply an example of how you might install these dependencies. Please consult with your The commands below are simply an example of how you might install these dependencies. Please consult with your
operating system's package manager to determine the correct packages to install. operating system's package manager to determine the correct packages to install.
@ -67,6 +59,14 @@ apt update
apt -y install php7.2 php7.2-cli php7.2-gd php7.2-mysql php7.2-pdo php7.2-mbstring php7.2-tokenizer php7.2-bcmath php7.2-xml php7.2-fpm php7.2-curl php7.2-zip mariadb-server nginx curl tar unzip git redis-server apt -y install php7.2 php7.2-cli php7.2-gd php7.2-mysql php7.2-pdo php7.2-mbstring php7.2-tokenizer php7.2-bcmath php7.2-xml php7.2-fpm php7.2-curl php7.2-zip mariadb-server nginx curl tar unzip git redis-server
``` ```
### Installing Composer
Composer is a dependency manager for PHP that allows us to ship everything you'll need code wise to operate the Panel. You'll
need composer installed before continuing in this process.
``` bash
curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer
```
## Download Files ## Download Files
The first step in this process is to create the folder where the panel will live and then move ourselves into that The first step in this process is to create the folder where the panel will live and then move ourselves into that
newly created folder. Below is an example of how to perform this operation. newly created folder. Below is an example of how to perform this operation.