Removed anora from installed apps, and changed PEM key to bytes instead of str.
- Legacy-Id: 16318
This commit is contained in:
parent
d0f1018734
commit
d8ac01dd42
|
@ -389,7 +389,6 @@ INSTALLED_APPS = (
|
||||||
'django.contrib.sites',
|
'django.contrib.sites',
|
||||||
'django.contrib.staticfiles',
|
'django.contrib.staticfiles',
|
||||||
# External apps
|
# External apps
|
||||||
'anora',
|
|
||||||
'bootstrap3',
|
'bootstrap3',
|
||||||
'corsheaders',
|
'corsheaders',
|
||||||
'django_markup',
|
'django_markup',
|
||||||
|
@ -1035,13 +1034,13 @@ UTILS_APIKEY_GUI_LOGIN_LIMIT_DAYS = 30
|
||||||
|
|
||||||
|
|
||||||
API_KEY_TYPE="ES256" # EC / P=256
|
API_KEY_TYPE="ES256" # EC / P=256
|
||||||
API_PUBLIC_KEY_PEM = """
|
API_PUBLIC_KEY_PEM = b"""
|
||||||
-----BEGIN PUBLIC KEY-----
|
-----BEGIN PUBLIC KEY-----
|
||||||
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEqVojsaofDJScuMJN+tshumyNM5ME
|
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEqVojsaofDJScuMJN+tshumyNM5ME
|
||||||
garzVPqkVovmF6yE7IJ/dv4FcV+QKCtJ/rOS8e36Y8ZAEVYuukhes0yZ1w==
|
garzVPqkVovmF6yE7IJ/dv4FcV+QKCtJ/rOS8e36Y8ZAEVYuukhes0yZ1w==
|
||||||
-----END PUBLIC KEY-----
|
-----END PUBLIC KEY-----
|
||||||
"""
|
"""
|
||||||
API_PRIVATE_KEY_PEM = """
|
API_PRIVATE_KEY_PEM = b"""
|
||||||
-----BEGIN PRIVATE KEY-----
|
-----BEGIN PRIVATE KEY-----
|
||||||
MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgoI6LJkopKq8XrHi9
|
MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgoI6LJkopKq8XrHi9
|
||||||
QqGQvE4A83TFYjqLz+8gULYecsqhRANCAASpWiOxqh8MlJy4wk362yG6bI0zkwSB
|
QqGQvE4A83TFYjqLz+8gULYecsqhRANCAASpWiOxqh8MlJy4wk362yG6bI0zkwSB
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# -*- conf-mode -*-
|
# -*- conf-mode -*-
|
||||||
setuptools>=18.5 # Require this first, to prevent later errors
|
setuptools>=18.5 # Require this first, to prevent later errors
|
||||||
#
|
#
|
||||||
anora>=0.1.2
|
#anora>=0.1.2
|
||||||
argon2-cffi>=16.1.0 # For the Argon2 password hasher option
|
argon2-cffi>=16.1.0 # For the Argon2 password hasher option
|
||||||
beautifulsoup4>=4.5.0
|
beautifulsoup4>=4.5.0
|
||||||
bibtexparser>=0.6.2,<1.0 # Version 1.0 doesn't work under python 2.7. 1.0.1 doesn't recognize month names or abbreviations.
|
bibtexparser>=0.6.2,<1.0 # Version 1.0 doesn't work under python 2.7. 1.0.1 doesn't recognize month names or abbreviations.
|
||||||
|
|
Loading…
Reference in a new issue