Pior Bastida
Pior Bastida
A task `envfile` could load `.env` file into the shell environment. ```yaml up: - envfile ``` ```yaml up: - envfile: config/local-dev.env ``` 1. the `.env` file would be loaded into...
It would be handy to help "onboarding" projects on DevBuddy by generating a small README section introducing DevBuddy to developers, how to install it and use it. Draft: --- For...
- https://github.com/mtlpy/mtlpyweb - https://github.com/pior/appsecrets - https://github.com/pior/pyramid_bugsnag - https://github.com/pior/colorfmt - https://github.com/pior/pyreleaser - https://github.com/pior/pyramid_useragent ## Working with DevBuddy - https://github.com/Shopify/toxiproxy - https://github.com/Shopify/ghostferry - https://github.com/Shopify/goreferrer ## Not working with DevBuddy - https://github.com/Shopify/ejson -...
The `python_develop` task has a `extras` parameter which lists the setuptools extras to install. If an extra is specified but not declared, `pip` will ignore it and display this: ```...
Syntax: ```yaml up: - python_develop: extras: [dev, docs] ```
```bash $ dad up Error: yaml: unmarshal errors: line 2: cannot unmarshal !!map into []interface {} ``` ```yaml up: python: 2.7.13 custom: command: pip install -e . custom: command: pip...
Some tasks like python_develop track file modification to decide whether to run or not. ``` func (p *pythonDevelopInstall) needed(ctx *context) (bool, error) { return store.New(ctx.proj.Path).HasFileChanged("setup.py") } ``` But this condition...