summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/README.md b/README.md
index 202f307..a10f558 100644
--- a/README.md
+++ b/README.md
@@ -190,12 +190,25 @@ The `key` parameter is the key from a previously uploaded file.
190``` 190```
191 191
192# Docker 192# Docker
193
193There are two Dockerfiles present in this repository. The file called `Dockerfile.development` is used for development 194There are two Dockerfiles present in this repository. The file called `Dockerfile.development` is used for development
194and `Dockerfile.production` is used for production deployments. 195and `Dockerfile.production` is used for production deployments.
195 196
196You can find the automated docker builds in the registry of this 197You can find the automated docker builds in the registry of this
197repository: https://0xacab.org/jvoisin/mat2-web/container_registry 198repository: https://0xacab.org/jvoisin/mat2-web/container_registry
198 199
200# Configuration
201
202The default settings from `main.py` may be overridden by adding a `config.py`
203file and add custom values for the relevant flask config variables. E.g.:
204
205```
206MAX_CONTENT_LENGTH = 32 * 1024 * 1024 # 32MB
207```
208
209See [Flask configuration docs](http://exploreflask.com/en/latest/configuration.html)
210for further information.
211
199# Custom templates 212# Custom templates
200 213
201You can override the default templates from `templates/` by putting replacements 214You can override the default templates from `templates/` by putting replacements