Skip to content

Commit

Permalink
Avoid changes in cog --check
Browse files Browse the repository at this point in the history
  • Loading branch information
ipmb committed Feb 10, 2024
1 parent d65814c commit c41b982
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ test: ## Run tests
help:
@echo -e "Available make commands:"
@echo -e ""
@echo "$$(grep -hE '^\S+:.*##' $(MAKEFILE_LIST) | sort | sed -e 's/:.*##\s*/:/' -e 's/^\(.\+\):\(.*\)/\1:\2/' | awk -F: '{ printf "%-20s %s\n", $$1, $$2 }')"
@echo "$$(grep -hE '^\S+:.*##' $(MAKEFILE_LIST) | sort | sed -e 's/:.*##\s*/:/' -e 's/^\(.\+\):\(.*\)/\1:\2/' | awk -F: '{ printf "%-25s %s\n", $$1, $$2 }')"

.DEFAULT_GOAL := help
52 changes: 26 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,32 +81,32 @@ mdown = Config.generate_markdown()
cog.out('\n'.join(mdown.split('\n')[1:]))
]]] -->

* **DEBUG**
type: `False`
default: `False`
* **ALLOWED_HOSTS**
Hosts allowed to serve the site https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/#allowed-hosts
type: `False`
default: `['*']`
* **DATABASE_URL**
A string with the database URL as defined in https://github.com/jacobian/dj-database-url#url-schema
type: `False`
default: `sqlite:///./sqlite3.db`
* **LOG_LEVEL**
Python logging level
type: `False`
default: `INFO`
* **SECRET_KEY** _REQUIRED_
A long random string you keep secret https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/#secret-key
type: `False`
* **ENVIRONMENT**
Deploy environment
type: `False`
default: `test`
* **BASIC_AUTH_CREDENTIALS**
Basic Auth credentials for the site in the format 'username:password'
type: `False`
default: ``
* **DEBUG**
type: `False`
default: `False`
* **ALLOWED_HOSTS**
Hosts allowed to serve the site https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/#allowed-hosts
type: `False`
default: `['*']`
* **DATABASE_URL**
A string with the database URL as defined in https://github.com/jacobian/dj-database-url#url-schema
type: `False`
default: `sqlite:///./sqlite3.db`
* **LOG_LEVEL**
Python logging level
type: `False`
default: `INFO`
* **SECRET_KEY** _REQUIRED_
A long random string you keep secret https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/#secret-key
type: `False`
* **ENVIRONMENT**
Deploy environment
type: `False`
default: `test`
* **BASIC_AUTH_CREDENTIALS**
Basic Auth credentials for the site in the format 'username:password'
type: `False`
default: ``
<!-- [[[end]]] -->

## Makefile commands
Expand Down

0 comments on commit c41b982

Please sign in to comment.