Stafford Brunk

Results 134 comments of Stafford Brunk

The gzip_proxied directive should apply to the docker requests but I know when I deployed a static site to my dokku install a few months ago I was not getting...

We use the [prepare step](https://docs.codeclimate.com/docs/configuring-the-prepare-step) to download the config from GitHub and overwrite the one in the repo. If you have local overrides in your config you'll have to use...

Well, it's basically what I said above. We do this for our [shared TSLint config](https://github.com/GuildEducationInc/tslint-config-guild) ```yaml ... prepare: fetch: - url: 'https://raw.githubusercontent.com/GuildEducationInc/tslint-config-guild/v1.0.0/tslint.json' path: 'tslint.json' ... ```

That’s not the original question. The very last sentence asks how to extend a shared config.

Take it or leave it. We use this across many projects for both TSLint and ESLint configs and it properly brings our shared configs into our repos for CodeClimate analysis....

This looks fine to me so far. I have no issue with using `bats` over `serverspec`.

@mikexstudios I am going to do work on this today. I may cherry-pick some of your commits out of your branch if you don't mind. Hoping to get a lot...

What issue were you having that this solves? This doesn't actually ensure any kind of idempotency, it just creates a unique name for each bash/user resource instead of them all...

"Managing" in this context is pretty loose. It's just shelling out to SSH command. These need to be converted to proper LWRPs in order for Chef to manage them. I...

Hmm, that's interesting. So yes I believe you've hit a race condition. We need to move this cookbook over to using LWRPs for the `dokku config` command over writing the...