tionis

Results 108 comments of tionis

Well in the case of vendoring I would think that the dependencies would be managed using git-subtree, git-subrepo, git submodules or maybe just by extracting an archive and commiting it.

I think the main idea would be to have the base module handling (steps 3 & 4) in janet itself and keep the other parts in spork. So janet releases...

How about using pouchdb?

Just to make the case for [pouchdb](pouchdb.com): - PouchDB is javascript implementation for client and server of apache couchdb - It is a document store (in json) that is designed...

Since no one seems to have mentioned it so far: https://hardbin.com makes use of writable gateways heavily for its core functionality

Small Note: watch seems to be working for me

I just wrote a comment explaining how to achieve a similar setup using litestream in #66

@spirobel There is no built-in way, you can however use litestream to replicate to s3/sftp with or without encryption. I implemented this using the following Dockerfile: ```Dockerfile FROM litestream/litestream AS...

Oh, and my litestream config looks like this: ```yaml dbs: - path: /data/denokv.sqlite3 replicas: - type: sftp host: zh2587s2.rsync.net:22 user: zh2587s2 path: litestream/denokv key-path: ${HOME}/.ssh/id_ed25519 age: identities: - ${AGE_PRIVATE_KEY} recipients:...

So there isn't any way to do this with the existing cli options, right?