Compare commits

...

3 Commits

Author SHA1 Message Date
eedad69f72 Fix bug 2024-07-06 12:21:45 -03:00
bf8d86de9b todo management 2024-07-06 12:13:20 -03:00
43e1bb44b1 todo management 2024-07-06 12:00:48 -03:00
2 changed files with 6 additions and 2 deletions

View File

@ -16,6 +16,8 @@
* How to setup the proxy
* APIs
* Sanitize all inputs
* Streaming responses in slow operations
like scaling down or building
* Streaming responses in slow operations like scaling down
or building
* Make more things configurable / remove hardcoded stuff
* CD for binaries and images for at least arm64/x86
* Multi-container docker logs

View File

@ -77,6 +77,8 @@ module Runtime
# file is like "#{base}/foo"
# dst is like #{dst_path}/foo
dst = Path[dst_path] / Path[file].relative_to(base_path)
# Make sure we have dest dir
Dir.mkdir_p dst.dirname unless File.directory? dst.dirname
# Render templated files
if file.ends_with? ".j2"
dst = dst.sibling(dst.stem)