Bruno Rocha

Results 230 issues of Bruno Rocha

## populate_args ```py @settings.populate_args() def a_function(server, port): ... # optionally mapped @settings.populate_args(server="db.config.server") def a_function(server, port): ... s_function(port=8888) # server will be read from dynaconf settings if not passed ``` ##...

wontfix
Not a Bug
RFC

Add celery to Django example and dicumentarion to django.md related to:https://stackoverflow.com/questions/66016398/how-to-use-dynaconf-to-configure-celery/66769693#66769693

wontfix
Docs
django

Right now changelog is created using `gitchangelog` and using commit messages. This should change. 1. Every PR must have a linked issue (unless explicitly stated as HOTFIX) 2. towncrier must...

wontfix
Not a Bug
RFC

This is a placeholder issue for the schema feature that is coming on 4.0 #677

wontfix
Not a Bug
RFC

having ```py settings = Dynaconf(settings_files=["a.yaml", "b.toml"]) ``` The file `a.yaml` will be loaded without taking environments in to account. ```yaml --- name: Bruno ``` The file `b.toml` will be loaded...

Not a Bug
RFC

```py from django.utils.translation import gettext_lazy as _ # Default language LANGUAGE_CODE = 'en-us' LANGUAGES = [ ('ja', _('Japanese')), ('nl', _('Dutch')), ('fr', _('French')), ('es', _('Spanish')), ('zh-hans', _('Chinese')), ('en-us', _('English (USA)')), ]...

bug
hacktoberfest
LazyIssue

I would like to see a comparison with https://nim-lang.org/ https://www.youtube.com/watch?time_continue=1017&v=IVgNVJdizHg

Copied from #103 I've resolved the issue of authentication using the next code: `swagger_template = { ..., 'securityDefinitions': { 'basicAuth': { 'type': 'basic' } }, ... }` `app = Flask(__name__)`...

ADD ISSUE_TEMPLATE and PR_TEMPLATE

enhancement
Hacktoberfest

Add files to setup netlify docs hosting (example in rochacbruno/dynaconf)

documentation
enhancement
Hacktoberfest