Commit 373687fe authored by Tao Gómez Gil's avatar Tao Gómez Gil Committed by Dan Abramov
Browse files

Add Powershell commands to README.md (#3515)

parent 5d154cbc
3 merge requests!12191Lim.Pisey.168:/Identified - We are currently investigating reports of missing build logs. The issue has been identified and a resolution is in progress. We will provide a further update when available.Mar 21, 09:02 UTC,!12853brikk,!5717Automatically extract project file structure from build bundle file
Showing with 22 additions and 0 deletions
+22 -0
......@@ -932,6 +932,12 @@ set "REACT_APP_SECRET_CODE=abcdef" && npm start
(Note: Quotes around the variable assignment are required to avoid a trailing whitespace.)
#### Windows (Powershell)
```Powershell
($env:REACT_APP_SECRET_CODE = "abcdef") -and (npm start)
```
#### Linux, macOS (Bash)
```bash
......@@ -1179,6 +1185,12 @@ To do this, set the `HTTPS` environment variable to `true`, then start the dev s
set HTTPS=true&&npm start
```
#### Windows (Powershell)
```Powershell
($env:HTTPS = $true) -and (npm start)
```
(Note: the lack of whitespace is intentional.)
#### Linux, macOS (Bash)
......@@ -1527,6 +1539,16 @@ set CI=true&&npm run build
(Note: the lack of whitespace is intentional.)
##### Windows (Powershell)
```Powershell
($env:CI = $true) -and (npm test)
```
```Powershell
($env:CI = $true) -and (npm run build)
```
##### Linux, macOS (Bash)
```bash
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment