Open Command Line
Add New File
npx create-react-app projname
Tips on setting up prettier and eslint: https://www.youtube.com/watch?v=bfyI9yl3qfE. Also here
Create a React based SPA (Single Page Application) using create-react-app on the front end and dotnet / webapi on the backend.
Leverages the create-react-app cli as well as the dotnet cli to quickly bootstrap a full stack application.
| { | |
| "extends": ["react-app", "plugin:prettier/recommended"], | |
| "rules": { | |
| "prettier/prettier": [ | |
| "error", | |
| { | |
| "singleQuote": true, | |
| "jsxBracketSameLine": true, | |
| "bracketSpacing": false | |
| } |
| h3. Description | |
| h3. Questions / Discussion | |
| h3. When will the work be performed | |
| h3. Who will be doing the work | |
| h3. What production/systems are impacted by the work being performed |
| [alias] | |
| dt = difftool | |
| mt = mergetool | |
| [diff] | |
| tool = bc3 | |
| [difftool] | |
| prompt = false | |
| [difftool "bc3"] | |
| cmd = \"c:/program files (x86)/beyond compare 3/bcomp.exe\" \"$LOCAL\" \"$REMOTE\" | |
| [difftool "p4"] |
| *.swp | |
| *.*~ | |
| project.lock.json | |
| .DS_Store | |
| *.pyc | |
| nupkg/ | |
| # Visual Studio Code | |
| .vscode |
| # | |
| # 'Modem in use' vpn issue can be resolved by resetting the newtork stack. Run this from an elevated perm powershell | |
| # | |
| # https://support.microsoft.com/en-us/help/10741/windows-fix-network-connection-issues | |
| # | |
| netsh winsock reset | |
| netsh int ip reset | |
| ipconfig /release | |
| ipconfig /renew |