From a8ffbcfa8eed3032af4a7accec640a3cc424c842 Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Thu, 16 Jan 2020 09:53:30 +0100 Subject: [PATCH] Fix initialization. --- README.md | 11 ++++++++--- requirements/requirements-dev.txt | 1 - requirements/requirements.txt | 1 + src/redakcja/localsettings.sample | 14 +++++++------- src/redakcja/settings/defaults.py | 3 +++ 5 files changed, 19 insertions(+), 11 deletions(-) delete mode 100644 requirements/requirements-dev.txt diff --git a/README.md b/README.md index 0c05ea6c..40192622 100644 --- a/README.md +++ b/README.md @@ -8,18 +8,23 @@ Platforma to serwis służący do grupowej edycji książek na potrzeby serwisu Instalacja i użycie =================== -#. Ściągnij i zainstaluj `pip `_ +#. Upewnij się, że masz Pythona w wersji co najmniej 3.5. +#. Stwórz i uruchom wirtualne środowisko: + + python3 -m venv ve + . ve/bin/activate + #. Przejdź do katalogu serwisu w konsoli #. Zainstaluj wymagane biblioteki komendą:: pip install -r requirements/requirements.txt +#. Skopiuj zawartość pliku `src/redakcja/localsettings.sample` do `src/redakcja/localsettings.py` i zmień go zgodnie ze swoimi potrzebami. + #. Wypełnij bazę danych:: src/manage.py migrate -#. Skopiuj zawartość pliku `src/redakcja/localsettings.sample` do `src/redakcja/localsettings.py` i zmień go zgodnie ze swoimi potrzebami. - #. Uruchom serwer deweloperski:: src/manage.py runserver diff --git a/requirements/requirements-dev.txt b/requirements/requirements-dev.txt deleted file mode 100644 index aec394f4..00000000 --- a/requirements/requirements-dev.txt +++ /dev/null @@ -1 +0,0 @@ -django-debug-toolbar diff --git a/requirements/requirements.txt b/requirements/requirements.txt index c90865e9..60d02dd4 100644 --- a/requirements/requirements.txt +++ b/requirements/requirements.txt @@ -22,5 +22,6 @@ django-gravatar2==1.4.2 django-extensions==2.1.6 django-bootstrap4==1.0.1 libsasscompiler==0.1.5 +django-debug-toolbar sentry-sdk==0.12.2 diff --git a/src/redakcja/localsettings.sample b/src/redakcja/localsettings.sample index 6d17799f..df74e78e 100644 --- a/src/redakcja/localsettings.sample +++ b/src/redakcja/localsettings.sample @@ -11,16 +11,18 @@ # THIS IS REQUIRED from redakcja.settings import * +# Filling this out is required. +SECRET_KEY = '' + # Path to repository with managed documents CATALOGUE_REPO_PATH = '/srv/redakcja/books' +CATALOGUE_IMAGE_REPO_PATH = '/srv/redakcja/images' -LOGGING_CONFIG_FILE = "/srv/redakcja/logging.cfg.dev" - -STATIC_ROOT = '/srv/redakcja/static/' -MEDIA_ROOT = '/srv/redakcja/media/' +#STATIC_ROOT = '/srv/redakcja/static/' +#MEDIA_ROOT = '/srv/redakcja/media/' # Subdirectory of MEDIA_ROOT containing images -IMAGE_DIR = 'images/' +#IMAGE_DIR = 'images/' CAS_SERVER_URL = 'https://logowanie.nowoczesnapolska.org.pl/cas/' CAS_VERSION = '2' @@ -32,5 +34,3 @@ COMPRESS = False APICLIENT_WL_CONSUMER_KEY = None APICLIENT_WL_CONSUMER_SECRET = None - -SECRET_KEY = '' diff --git a/src/redakcja/settings/defaults.py b/src/redakcja/settings/defaults.py index 547269b1..62521250 100644 --- a/src/redakcja/settings/defaults.py +++ b/src/redakcja/settings/defaults.py @@ -69,3 +69,6 @@ SHOW_APP_VERSION = False CAS_APPLY_ATTRIBUTES_TO_USER = True CAS_RENAME_ATTRIBUTES = { 'email': 'email', 'firstname': 'first_name', 'lastname': 'last_name'} + + +LITERARY_DIRECTOR_USERNAME = '' -- 2.20.1