mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-27 10:41:39 -07:00
Adding Simple URL-based feature flags (#117)
* Fixes #66: As a developer, I want to limit the audience that sees new features, so that we can control the message and positioning of our tool. Implements simple feature flagging via URL parameters. Provide "?flags=x,y,z" to enable flags x, y, and z. * Fixing type to use Location instead of URL * Updating README with info on how to use feature flags
This commit is contained in:
parent
c07a14a8db
commit
7ab14c7f3d
11 changed files with 202 additions and 31 deletions
13
client/.vscode/launch.json
vendored
13
client/.vscode/launch.json
vendored
|
@ -29,6 +29,19 @@
|
|||
"stopOnEntry": false,
|
||||
"runtimeArgs": ["--nolazy"],
|
||||
"sourceMaps": false
|
||||
},
|
||||
{
|
||||
"name": "Debug Jest Tests",
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"runtimeArgs": [
|
||||
"--inspect-brk",
|
||||
"--inspect",
|
||||
"${workspaceRoot}/node_modules/.bin/jest"
|
||||
],
|
||||
"console": "integratedTerminal",
|
||||
"internalConsoleOptions": "neverOpen",
|
||||
"port": 9229
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue