We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I pulled this cookbook from the Supermarket, and the config file template that comes down looks like this:
# The `common' part is automatically included (and possibly overriden by all # other flavors) common: storage: <%= @storage %> storage_path: <%= @storage_path %> secret_key: <%= @secret_key %> <% if @storage == "s3" -%> s3_access_key: <%= @s3_access_key %> s3_secret_key: <%= @s3_secret_key %> s3_bucket: <%= @s3_bucket %> <% end %> standalone: <%= @standalone %> <% unless @standalone %> index_endpoint: <%= @index_endpoint %> <% end %> # This is the default configuration when no flavor is specified dev: loglevel: debug prod: loglevel: warn
However, in this repo it looks like this:
# The `common' part is automatically included (and possibly overriden by all # other flavors) common: storage: <%= @storage %> storage_path: <%= @storage_path %> secret_key: <%= @secret_key %> <% if @storage == "s3" -%> s3_access_key: <%= @s3_access_key %> s3_secret_key: <%= @s3_secret_key %> s3_bucket: <%= @s3_bucket %> boto_bucket: <%= @s3_bucket %> <% end %> standalone: <%= @standalone %> <% unless @standalone %> index_endpoint: <%= @index_endpoint %> <% end %> # This is the default configuration when no flavor is specified dev: loglevel: debug prod: loglevel: warn
The text was updated successfully, but these errors were encountered:
I just pushed 0.0.8 to the supermarket. Can you take a look?
Sorry, something went wrong.
No branches or pull requests
I pulled this cookbook from the Supermarket, and the config file template that comes down looks like this:
However, in this repo it looks like this:
The text was updated successfully, but these errors were encountered: