A Pen by George James on CodePen.
This file contains hidden or 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
version: '3.4' | |
services: | |
mssql: | |
image: 'microsoft/mssql-server-linux' | |
ports: | |
- 1433:1433 | |
environment: | |
- ACCEPT_EULA='Y' | |
- SA_PASSWORD=Administrator100! |
This file contains hidden or 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
openssl req -x509 -out localhost.crt -keyout localhost.key \ | |
-newkey rsa:2048 -nodes -sha256 \ | |
-subj '/CN=localhost' -extensions EXT -config <( \ | |
printf "[dn]\nCN=localhost\n[req]\ndistinguished_name = dn\n[EXT]\nsubjectAltName=DNS:localhost\nkeyUsage=digitalSignature\nextendedKeyUsage=serverAuth") |
This file contains hidden or 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
04f39f36537dd15f94e5c03ddd327d9c31647595e793bb8c2260f73ed0746d6ec45447ca14ebe48ea0cd18ca8ef8aa068062c32d8765b48b0f80253d2aa94e0461 |
This file contains hidden or 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
const path = require('path'); | |
const webpack = require('webpack'); | |
const ExtractHtml = require('html-webpack-plugin'); | |
const ExtractText = require('extract-text-webpack-plugin'); | |
const extractCss= new ExtractText({ filename: 'styles/vendors.css' }); | |
const extractStylus = new ExtractText({ filename: 'styles/app.css' }); | |
module.exports = (env) => { | |
return { |