Does anyone have a solution to backup the .void.db file. A private/public gist or github repo would be ideal.
A general and agnostic implementation would be to enable pre and post hooks for void. (pre-open?? post-close??). This would allow the implementation details for backups and other operations to be though out later.
git back up implementation assuming pre/post hooks
personally I use void only on one computer so my commands would look as follows
- pre-hook would do a
git pull
- post-hook would do a
git push
- failure due to network or other reasons would fail silently.. maybe a place to show error messages within void??
Does anyone have a solution to backup the .void.db file. A private/public gist or github repo would be ideal.
A general and agnostic implementation would be to enable pre and post hooks for void. (pre-open?? post-close??). This would allow the implementation details for backups and other operations to be though out later.
git back up implementation assuming pre/post hooks
personally I use void only on one computer so my commands would look as follows
git pullgit push