Skip to content

Commit

Permalink
RDISCROWD-5652 Added logo color config for dev. (#815)
Browse files Browse the repository at this point in the history
* Added logo color config for dev.

* fix

* refactor

* Themes.
  • Loading branch information
kbecker42 committed Feb 21, 2023
1 parent 8dfb76a commit 31b770e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions pybossa/settings_local.py.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@
## use SERVER_NAME instead of HOST for production environment with real URLs
# SERVER_NAME = 'somecoolurl.com'

SERVER_TYPE = 'Development QA'
DISPLAY_PLATFORM_IDENTIFIER = True
NAVBAR_COLOR = 'linear-gradient(44deg, orange, #4b0f0f)'

SECRET = 'foobar'
SECRET_KEY = 'my-session-secret'

Expand Down
2 changes: 1 addition & 1 deletion pybossa/themes/default
Submodule default updated 1 files
+20 −1 templates/_navbar.html
3 changes: 3 additions & 0 deletions settings_test.py.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ from collections import OrderedDict

SERVER_NAME = 'localhost'
SERVER_TYPE = 'Development QA'
DISPLAY_PLATFORM_IDENTIFIER = True
NAVBAR_COLOR = 'linear-gradient(44deg, orange, #4b0f0f)'

FORCE_HTTPS = False
HOST = 'localhost'
PORT = 5001
Expand Down

0 comments on commit 31b770e

Please sign in to comment.