Implement syntax for restricted choices
Closed this issue · 1 comments
parisk commented
env-spec-py should support restricting the available values of an environment variable.
Example
Input
DEBUG: [0,1]
Output
<label for="env_spec_admin_debug">DEBUG</label>
<select id="env_spec_admin_debug" name="admin_debug">
<option value="0">0</option>
<option value="1">1</option>
</select>