Created
October 17, 2015 16:47
-
-
Save michaelrice/778d9526f8702e5d3c61 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pigs_configs_provider_plugin: | |
- Opt1: | |
- name: "namespace" | |
- value: "steel_pigs.plugins.providers.sql" | |
- Opt2: | |
- name: "class" | |
- value: "SQL" | |
- Opt3: | |
- name: "engine" | |
- value: "sqlite:///:memory:" | |
PROVIDER_PLUGIN = { | |
{% for item in pigs_configs_provider_plugin %} | |
{% for opts in item %} | |
"{{ opts }}": "{{ opts.value }}", | |
{% endfor %} | |
{% endfor %} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment