-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update fast path install instructions. (#2905)
- Loading branch information
1 parent
ec43595
commit d183a05
Showing
2 changed files
with
7 additions
and
50 deletions.
There are no files selected for viewing
25 changes: 5 additions & 20 deletions
25
astro/src/content/docs/get-started/download-and-install/_fast-path-install.mdx
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 |
---|---|---|
@@ -1,37 +1,22 @@ | ||
### macOS | ||
### macOS and Linux | ||
|
||
Please feel free to read these install scripts before running them. Always a good idea. | ||
|
||
```sh title="Install in your current working directory using ZIP packages" | ||
```sh title="Install in your current working directory" | ||
sh -c "curl -fsSL https://raw.githubusercontent.com/FusionAuth/fusionauth-install/master/install.sh | sh" | ||
``` | ||
```sh title="Install in your current working directory using ZIP packages and include Elasticsearch" | ||
```sh title="Install in your current working directory and include Elasticsearch" | ||
sh -c "curl -fsSL https://raw.githubusercontent.com/FusionAuth/fusionauth-install/master/install.sh | sh -s - -s" | ||
``` | ||
### Linux | ||
|
||
Please feel free to read these install scripts before running them. Always a good idea. | ||
|
||
```sh title="Install in your current working directory using ZIP packages" | ||
sh -c "curl -fsSL https://raw.githubusercontent.com/FusionAuth/fusionauth-install/master/install.sh | sh -s - -z" | ||
``` | ||
```sh title="Install in your current working directory using ZIP packages and include Elasticsearch" | ||
sh -c "curl -fsSL https://raw.githubusercontent.com/FusionAuth/fusionauth-install/master/install.sh | sh -s - -z -s" | ||
``` | ||
```sh title="Install for all users on the system using DEB or RPM packages" | ||
sh -c "curl -fsSL https://raw.githubusercontent.com/FusionAuth/fusionauth-install/master/install.sh | sh" | ||
``` | ||
```sh title="Install for all users on the system using DEB or RPM packages and include Elasticsearch" | ||
sh -c "curl -fsSL https://raw.githubusercontent.com/FusionAuth/fusionauth-install/master/install.sh | sh -s - -s" | ||
``` | ||
### Windows | ||
Please note, that versions equal to `1.37.0` and less than `1.40.0` did not have a native Windows install option. It is recommended to plan to install version `1.40.0` or later. | ||
|
||
Please feel free to read these install scripts before running them. Always a good idea. | ||
|
||
```sh title="Install in your current working directory using ZIP packages. Install using Windows PowerShell" | ||
```sh title="Install in your current working directory. Install using Windows PowerShell" | ||
. { iwr -useb https://raw.githubusercontent.com/FusionAuth/fusionauth-install/master/install.ps1 } | iex; install | ||
``` | ||
```sh title="Install in your current working directory using ZIP packages and include Elasticsearch. Install using Windows PowerShell" | ||
```sh title="Install in your current working directory and include Elasticsearch. Install using Windows PowerShell" | ||
. { iwr -useb https://raw.githubusercontent.com/FusionAuth/fusionauth-install/master/install.ps1 } | iex; install -includeSearch 1 | ||
``` |
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