Skip to content

Commit

Permalink
Merge branch 'hotfix/1.20.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
andersju committed Oct 25, 2022
2 parents 9953321 + 114d4b3 commit 981a706
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ Nedan är ett exempel på en minimal installation i Linux.

# Installera MongoDB 5.0.x:
# https://www.mongodb.com/docs/v5.0/installation/
# Installera MongoDB Database Tools:
# https://www.mongodb.com/try/download/database-tools
# (inkluderar mongorestore & co, som ej längre är del av MongoDB-disten sen 4.4)

# Klona projektet
git clone [email protected]:libris/bibstat
Expand Down
6 changes: 5 additions & 1 deletion bibstat/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
BASE_DIR = Path(__file__).resolve().parent.parent

# Bibstat version number - update this when making a new release
RELEASE_VERSION = "1.20.0"
RELEASE_VERSION = "1.20.1"

"""
----------------------------------------------------------
Expand Down Expand Up @@ -55,6 +55,10 @@

LOG_LEVEL = "WARNING"

# The following is necessary because when you select all surveys in the admin
# interface and click Export, the request is quite large.
DATA_UPLOAD_MAX_NUMBER_FIELDS = 10000

# Override above with local settings if present
try:
from .settings_local import *
Expand Down

0 comments on commit 981a706

Please sign in to comment.