Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
kbecker42 committed Feb 17, 2023
1 parent 66e4676 commit 07c3d2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
6 changes: 1 addition & 5 deletions pybossa/settings_local.py.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,7 @@

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

SECRET = 'foobar'
SECRET_KEY = 'my-session-secret'
Expand Down
7 changes: 2 additions & 5 deletions settings_test.py.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,8 @@ from collections import OrderedDict
SERVER_NAME = 'localhost'
SERVER_TYPE = 'Development QA'
DISPLAY_PLATFORM_IDENTIFIER = True
NAVBAR_COLOR = {
'Development QA': 'linear-gradient(44deg, orange, #4b0f0f)',
'Public QA': 'linear-gradient(44deg, green, #003300)',
'Private QA': 'linear-gradient(44deg, seagreen, #005500)'
}
NAVBAR_COLOR = 'linear-gradient(44deg, orange, #4b0f0f)'

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

0 comments on commit 07c3d2e

Please sign in to comment.