Skip to content

Commit

Permalink
bump setup to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mc51 committed Dec 29, 2020
1 parent 393765a commit c8d1bf8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions server/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
MAX_CLIPS_PER_USER = 5

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = "sfsdfsdfsdfsdfsdfdsfsdfdsf"
SECRET_KEY = None
if not SECRET_KEY:
print(
"ERROR: You must specify a secret key. Edit server/settings.py and set a key there."
)
sys.exit(1)

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
DEBUG = False

# Add your domain / ip to the allowed hosts
# "*" allows all !
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="clipster-server",
version="0.4.0",
version="0.4.1",
description="Multi Platform Cloud Clipboard - Linux Server",
url="http://github.com/mc51/Clipster-Server",
author="MC51",
Expand Down

0 comments on commit c8d1bf8

Please sign in to comment.