Callum Macdonald
Callum Macdonald
> > I think you've fundamentally misunderstood what the current situation is. > > This is interesting. Could you elaborate, Callum? 🙂 We may be tapping the point of misunderstanding...
@chagai95 My impression from that post is also "non event".
I've also built something slightly similar, although called `do.md`. I built a web frontend that uses isomorphic-git to pull the repo containing the tasks from git. My use case is...
@ngduc Awesome, really happy that you're also open to finding a shared spec that allows for interoperability. At @GenerousLabs we're working on other projects with git + markdown, and also...
This question is quite old, but having spent a little time in the node-git-server code, I think the answer to this is **not easily**. This package calls git on the...
It seems like in my tests `putResolve()` from `typed-redux-saga` doesn't behave the same as `putResolve()` from `redux-saga/effects` when used like: ```typescript const result = yield* putResolve(action()) ``` When I switch...
@adzialocha Cool, congrats. I showed up to the weekly call last week but was the only one there. Are the calls still happening? I think y'all are in Berlin, I...
It runs fine for me. You just need a `docker-compose.yml` file, something like: ```yml version: "3.4" services: app: image: monica:apache depends_on: - db ports: - 3400:80 environment: - DB_HOST=db -...
@bugsbunny88 It seems like you're missing an SSL proxy. The config I posted above requires the site to be setup behind a reverse proxy that handles SSL termination. I personally...
Using docker-compose, the trustroots container starts before the mongo container is ready. The mongo 4.4 container doesn't support a healthcheck, so we can't wait until its healthy in the compose...