-
Notifications
You must be signed in to change notification settings - Fork 10.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Templates] Update the react template to use the CLI proxy
Updates the react template to use the http-proxy-middleware for handling the requests instead of the asp.net core proxy in the same way it's done for the Angular template.
- Loading branch information
Showing
15 changed files
with
16,346 additions
and
53 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
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 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 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 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
4 changes: 4 additions & 0 deletions
4
...ProjectTemplates/Web.Spa.ProjectTemplates/content/React-CSharp/ClientApp/.env.development
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
PORT=5002 | ||
//#if(RequiresHttps) | ||
HTTPS=true | ||
//#endif |
33 changes: 33 additions & 0 deletions
33
...jectTemplates/Web.Spa.ProjectTemplates/content/React-CSharp/ClientApp/aspnetcore-https.js
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// This script sets up HTTPS for the application using the ASP.NET Core HTTPS certificate | ||
const fs = require('fs'); | ||
const spawn = require('child_process').spawn; | ||
const path = require('path'); | ||
|
||
const baseFolder = | ||
process.env.APPDATA !== undefined && process.env.APPDATA !== '' | ||
? `${process.env.APPDATA}/ASP.NET/https` | ||
: `${process.env.HOME}/.aspnet/https`; | ||
|
||
const certificateArg = process.argv.map(arg => arg.match(/--name=(?<value>.+)/i)).filter(Boolean)[0]; | ||
const certificateName = certificateArg ? certificateArg.groups.value : process.env.npm_package_name; | ||
|
||
if (!certificateName) { | ||
console.error('Invalid certificate name. Run this script in the context of an npm/yarn script or pass --name=<<app>> explicitly.') | ||
process.exit(-1); | ||
} | ||
|
||
const certFilePath = path.join(baseFolder, `${certificateName}.pem`); | ||
const keyFilePath = path.join(baseFolder, `${certificateName}.key`); | ||
|
||
if (!fs.existsSync(certFilePath) || !fs.existsSync(keyFilePath)) { | ||
spawn('dotnet', [ | ||
'dev-certs', | ||
'https', | ||
'--export-path', | ||
certFilePath, | ||
'--format', | ||
'Pem', | ||
'--no-password', | ||
], { stdio: 'inherit', }) | ||
.on('exit', (code) => process.exit(code)); | ||
} |
55 changes: 55 additions & 0 deletions
55
...jectTemplates/Web.Spa.ProjectTemplates/content/React-CSharp/ClientApp/aspnetcore-react.js
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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
// This script configures the .env.development.local file with additional environment variables to configure HTTPS using the ASP.NET Core | ||
// development certificate in the webpack development proxy. | ||
|
||
const fs = require('fs'); | ||
const path = require('path'); | ||
|
||
const baseFolder = | ||
process.env.APPDATA !== undefined && process.env.APPDATA !== '' | ||
? `${process.env.APPDATA}/ASP.NET/https` | ||
: `${process.env.HOME}/.aspnet/https`; | ||
|
||
const certificateArg = process.argv.map(arg => arg.match(/--name=(?<value>.+)/i)).filter(Boolean)[0]; | ||
const certificateName = certificateArg ? certificateArg.groups.value : process.env.npm_package_name; | ||
|
||
if (!certificateName) { | ||
console.error('Invalid certificate name. Run this script in the context of an npm/yarn script or pass --name=<<app>> explicitly.') | ||
process.exit(-1); | ||
} | ||
|
||
const certFilePath = path.join(baseFolder, `${certificateName}.pem`); | ||
const keyFilePath = path.join(baseFolder, `${certificateName}.key`); | ||
|
||
if (!fs.existsSync('.env.development.local')) { | ||
fs.writeFileSync( | ||
'.env.development.local', | ||
`SSL_CRT_FILE=${certFilePath} | ||
SSL_KEY_FILE=${keyFilePath}` | ||
); | ||
} else { | ||
let lines = fs.readFileSync('.env.development.local') | ||
.toString() | ||
.split('\n'); | ||
|
||
let hasCert, hasCertKey = false; | ||
for (const line of lines) { | ||
if (/SSL_CRT_FILE=.*/i.test(line)) { | ||
hasCert = true; | ||
} | ||
if (/SSL_KEY_FILE=.*/i.test(line)) { | ||
hasCertKey = true; | ||
} | ||
} | ||
if (!hasCert) { | ||
fs.appendFileSync( | ||
'.env.development.local', | ||
`\nSSL_CRT_FILE=${certFilePath}` | ||
); | ||
} | ||
if (!hasCertKey) { | ||
fs.appendFileSync( | ||
'.env.development.local', | ||
`\nSSL_KEY_FILE=${keyFilePath}` | ||
); | ||
} | ||
} |
Oops, something went wrong.