fnp
/
redakcja.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
4186d2d
)
Fix initialization.
author
Radek Czajka
<rczajka@rczajka.pl>
Thu, 16 Jan 2020 08:53:30 +0000
(09:53 +0100)
committer
Radek Czajka
<rczajka@rczajka.pl>
Thu, 16 Jan 2020 08:53:30 +0000
(09:53 +0100)
README.md
patch
|
blob
|
history
requirements/requirements-dev.txt
[deleted file]
patch
|
blob
|
history
requirements/requirements.txt
patch
|
blob
|
history
src/redakcja/localsettings.sample
patch
|
blob
|
history
src/redakcja/settings/defaults.py
patch
|
blob
|
history
diff --git
a/README.md
b/README.md
index
0c05ea6
..
4019262
100644
(file)
--- 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
===================
Instalacja i użycie
===================
-#. Ściągnij i zainstaluj `pip <http://pypi.python.org/pypi/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
#. 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
#. 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
#. Uruchom serwer deweloperski::
src/manage.py runserver
diff --git
a/requirements/requirements-dev.txt
b/requirements/requirements-dev.txt
deleted file mode 100644
(file)
index
aec394f
..0000000
--- a/
requirements/requirements-dev.txt
+++ /dev/null
@@
-1
+0,0 @@
-django-debug-toolbar
diff --git
a/requirements/requirements.txt
b/requirements/requirements.txt
index
c90865e
..
60d02dd
100644
(file)
--- 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-extensions==2.1.6
django-bootstrap4==1.0.1
libsasscompiler==0.1.5
+django-debug-toolbar
sentry-sdk==0.12.2
sentry-sdk==0.12.2
diff --git
a/src/redakcja/localsettings.sample
b/src/redakcja/localsettings.sample
index
6d17799
..
df74e78
100644
(file)
--- a/
src/redakcja/localsettings.sample
+++ b/
src/redakcja/localsettings.sample
@@
-11,16
+11,18
@@
# THIS IS REQUIRED
from redakcja.settings import *
# 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'
# 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
# Subdirectory of MEDIA_ROOT containing images
-IMAGE_DIR = 'images/'
+
#
IMAGE_DIR = 'images/'
CAS_SERVER_URL = 'https://logowanie.nowoczesnapolska.org.pl/cas/'
CAS_VERSION = '2'
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
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
547269b
..
6252125
100644
(file)
--- 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'}
CAS_APPLY_ATTRIBUTES_TO_USER = True
CAS_RENAME_ATTRIBUTES = {
'email': 'email', 'firstname': 'first_name', 'lastname': 'last_name'}
+
+
+LITERARY_DIRECTOR_USERNAME = ''