Created
March 16, 2023 08:59
-
-
Save Typiqally/1b1636a49a373f32ec2cbdbf8d32874d to your computer and use it in GitHub Desktop.
ASP.NET Core + Vite, HTTPS proxy configuration
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 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. | |
import fs from "fs"; | |
import path from "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', | |
`VITE_SSL_CRT_FILE=${certFilePath} | |
VITE_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 (/VITE_SSL_CRT_FILE=.*/i.test(line)) { | |
hasCert = true; | |
} | |
if (/VITE_SSL_KEY_FILE=.*/i.test(line)) { | |
hasCertKey = true; | |
} | |
} | |
if (!hasCert) { | |
fs.appendFileSync( | |
'.env.development.local', | |
`\nVITE_SSL_CRT_FILE=${certFilePath}` | |
); | |
} | |
if (!hasCertKey) { | |
fs.appendFileSync( | |
'.env.development.local', | |
`\nVITE_SSL_KEY_FILE=${keyFilePath}` | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment