Skip to content

Commit

Permalink
Added logo color config for dev.
Browse files Browse the repository at this point in the history
  • Loading branch information
kbecker42 committed Feb 17, 2023
1 parent 8dfb76a commit 91870e6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pybossa/settings_local.py.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@
## use SERVER_NAME instead of HOST for production environment with real URLs
# SERVER_NAME = 'somecoolurl.com'

SERVER_TYPE = 'Development QA'
DISPLAY_PLATFORM_IDENTIFIER = True
LOGO_COLOR = {
'Development QA': 'linear-gradient(44deg, orange, #4b0f0f)',
'Public QA': 'linear-gradient(44deg, green, #003300)',
'Private QA': 'linear-gradient(44deg, seagreen, #005500)'
}

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

Expand Down
6 changes: 6 additions & 0 deletions settings_test.py.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ from collections import OrderedDict

SERVER_NAME = 'localhost'
SERVER_TYPE = 'Development QA'
DISPLAY_PLATFORM_IDENTIFIER = True
LOGO_COLOR = {
'Development QA': 'linear-gradient(44deg, orange, #4b0f0f)',
'Public QA': 'linear-gradient(44deg, green, #003300)',
'Private QA': 'linear-gradient(44deg, seagreen, #005500)'
}
FORCE_HTTPS = False
HOST = 'localhost'
PORT = 5001
Expand Down

0 comments on commit 91870e6

Please sign in to comment.