Questions
The following questions will test what we have learned in this chapter:
- In ASP.NET Core, what is the name of the file where we store any settings specific to the production environment?
- What is the reason for our ASP.NET Core backend needing the
Frontend
setting? - Let's pretend we have introduced a QA environment and have created the following
npm
script to execute a build for this environment:"build:qa": "cross-env REACT_APP_ENV=qa npm run build"
Which
npm
command would we use to produce a QA build? - What would be broken if we didn't include the
web.config
file with our React frontend? - Why didn't we store the production and staging connection strings in the
appsettings.Product.json
orappsettings.Staging.json
files?