WIP Set up akaunting

This commit is contained in:
2024-12-16 12:04:08 +04:00
parent 31b7ff9217
commit 18c39305cb
18 changed files with 571 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<% @config.each do |key, value| %>
<% if value.is_a?(Hash) %>
<% value.each do |k, v| %>
<%= "#{key.upcase}_#{k.upcase}" %>=<%= v.to_s %>
<% end %>
<% else %>
<% if value %>
<%= key.upcase %>=<%= value.to_s %>
<% end %>
<% end %>
<% end %>