diff --git a/server/settings.py b/server/settings.py index 643c7c2..879b2e5 100644 --- a/server/settings.py +++ b/server/settings.py @@ -18,7 +18,7 @@ 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." @@ -26,7 +26,7 @@ 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 ! diff --git a/setup.py b/setup.py index 9539193..31a693a 100644 --- a/setup.py +++ b/setup.py @@ -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",