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
| //Install express server | |
| const express = require('express'); | |
| const path = require('path'); | |
| const app = express(); | |
| // Serve only the static files form the dist directory | |
| app.use(express.static(__dirname + '/dist/<appName>')); | |
| app.get('/*', function(req,res) { |
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
| # 1. Download and install go | |
| https://golang.org/doc/install | |
| # 2. Download and install VMware workstation player | |
| https://www.vmware.com/products/workstation-player.html | |
| # 3. Download and install vagrant | |
| https://www.vagrantup.com/downloads | |
| # 4. Download vagrant vmware utility |
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
| sfc /scannow | |
| chkdsk C: /f /r /x | |
| chkdsk D: /f /r /x | |
| DISM /Online /Cleanup-Image /CheckHealth | |
| DISM /Online /Cleanup-Image /ScanHealth | |
| DISM /Online /Cleanup-Image /RestoreHealth | |
| DISM /Online /Cleanup-Image /RestoreHealth /Source:F:\Sources\install.wim |
OlderNewer