...
Creating environment files
TODO: Describe what env.json files are for, how to create a populate an env.[ThemeName].json
file inside There are some JSON files that contain various options specific to each environment. They exist in src/Presentation/Nop.Web/config/env
. We need to create a new one for our client environment, even if it doesn’t need any custom options yet.
Duplicate the
src/Presentation/Nop.Web/config/env/env.dev.json
file and rename the new fileenv
...
.[themename]-test.json
. In our example, it’d beenv.examplemountain-test.json
.Reach out to your onboarding buddy / manager to learn where to find the values needed to populate the file.
Reach out to your manager to get the ZIP package in LastPass updated to include
...
the new file.
Setting up the assets
Asset generation
...