Simon
Simon
## Summary #88 ## Checklist - [x] Verify `manifest.json` - [x] Verify occurrences of `SERVER_URL` - [x] Tested and/or added tests to validate that the changes work as intended, if...
Implements #189 This is especially useful for backups to external drives or network backends which might not always be available. I'll add docs (and maybe tests) once there's a consensus...
### What happened? This fails with a `ReferenceError: Cannot access 'roomState' before initialization` error since line 58 refers to the potentially uninitialized object: https://github.com/tldraw/tldraw/blob/37377fbef46d63ba2e0677a2a2ed0086d3931d74/templates/simple-server-example/src/server/rooms.ts#L45-L61 Running the dev script inside `package.json`...
Fixes #1235 TODO: - [x] Add tests - [ ] Verify behavior of other connectors
## Describe the bug `files.put()` does not expand `~` to the value of `$HOME` ## To Reproduce ```python from pyinfra.operations import files files.put(name='Copy file', src='README.md', dest='~/pyinfra-README.md') ``` ```bash pyinfra @local...