-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update php installation, added skip_apache_restart config flag, remov…
…ed kibana/elasticsearch support
- Loading branch information
Showing
22 changed files
with
63 additions
and
543 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,22 +21,35 @@ export PATH="$PATH:/usr/local/sbin:$HOME/bin:$HOME/.composer/vendor/bin" | |
brew update | ||
brew upgrade | ||
``` | ||
2. Since there is no php by default in macOS it hsould be istalled manually via brew. | ||
```bash | ||
brew install shivammathur/php/[email protected] | ||
``` | ||
|
||
2. Download phar package from [the latest release](https://github.com/ytorbyk/sage/releases/latest) and put it in `$HOME/bin` folder. | ||
3. Download phar package from [the latest release](https://github.com/ytorbyk/sage/releases/latest) and put it in `$HOME/bin` folder. | ||
```bash | ||
curl -L https://github.com/ytorbyk/sage/releases/latest/download/sage.phar > $HOME/bin/bin-sage | ||
chmod +x $HOME/bin/bin-sage | ||
``` | ||
4. Create $HOME/bin/sage txt file with the next contend | ||
```bash | ||
#!/usr/bin/env bash | ||
/usr/local/opt/[email protected]/bin/php "$HOME/bin/bin-sage" "$@" | ||
``` | ||
5. Make the txt file executable | ||
```bash | ||
curl -L https://github.com/ytorbyk/sage/releases/latest/download/sage.phar > $HOME/bin/sage | ||
chmod +x $HOME/bin/sage | ||
chown +x $HOME/bin/sage | ||
``` | ||
|
||
3. [Optional step] Customize configuration | ||
6. [Optional step] Customize configuration | ||
```bash | ||
# It creates configuration dump ~/xSage/config.php. | ||
# You can customize and move it to ~/.sage/config.php before next step if you want. | ||
|
||
sage env:config-dump | ||
``` | ||
|
||
4. Install and configure required environments | ||
7. Install and configure required environments | ||
```bash | ||
# It's automatic, you will prompt to enter your password once and two times MySQL root password. | ||
# If you don't have installed MySQL before, just press enter (there is no password by default). | ||
|
@@ -45,12 +58,12 @@ sage env:config-dump | |
sage env:install | ||
``` | ||
|
||
5. [Optional step] Install Bash completion for the application | ||
8. [Optional step] Install Bash completion for the application | ||
```bash | ||
sage env:completion | ||
``` | ||
|
||
6. Ready to use | ||
9. Ready to use | ||
```bash | ||
# Displays a list of supported commands with short descriptions | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.