You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ To send us a pull request, please:
32
32
1. Fork the repository.
33
33
2. Working off the latest version of the *staging* branch, modify the source; please focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change.
34
34
3. Ensure local tests pass.
35
-
4. Run `prettier` on your new code to ensure style consistency. Remember to only reformat files relevant to your changes.
35
+
4. Run `standard --fix` on your new code to ensure style consistency. Remember to only reformat files relevant to your changes.
36
36
5. Commit to your fork using clear commit messages.
37
37
6. Send us a pull request merging into the *staging* branch, answering any default questions in the pull request interface.
38
38
7. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
Copy file name to clipboardExpand all lines: dev-portal/README.md
+5-2
Original file line number
Diff line number
Diff line change
@@ -31,10 +31,13 @@ module.exports = {
31
31
// customersTableName: `DevPortalCustomers`,
32
32
33
33
// Set this to overwrite-content if you want to reset your custom content back to the defaults. Defaults to ``
34
-
// staticAssetRebuildMode: `overwrite-content` // ONLY SET
34
+
// staticAssetRebuildMode: `overwrite-content`, // ONLY SET
35
35
36
36
// AWS SAM CLI profile option: optional specific profile from your AWS credential file. Not used by default
37
-
//awsSamCliProfile: "my-profile"
37
+
//awsSamCliProfile: "my-profile",
38
+
39
+
// Set this to `true` if you want to enable development mode. It's `false` by default, and unless you're actively developing on the developer portal itself locally, you should generally leave it unset as it disables most CORS protections.
40
+
//developmentMode: false
38
41
}
39
42
```
40
43
5. Run `npm run release`. This will build the static assets, deploy them, and generate the `dev-portal/public/config.js` file needed for local development. Take note of the bucket names you use
0 commit comments