You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before you can start saving (and displaying) data, you need to first create an
66
66
environment and define a default project.
@@ -78,7 +78,7 @@ field will be shown in the Changes and Timeline views.
78
78
79
79
**Note**: Git and Mercurial need to locally clone the repository. That means that your `sample_project/repos` directory will need to be owned by the server. In the case of a typical Apache installation, you'll need to type `sudo chown www-data:www-data sample_project/repos`
80
80
81
-
# Saving data
81
+
##Saving data
82
82
83
83
Data is saved POSTing to `http://localhost:8000/result/add/`.
84
84
@@ -95,9 +95,9 @@ environment. It must always exist or the data won't be saved (that is the reason
95
95
it is described as a necessary step in the previous "Codespeed configuration"
96
96
section).
97
97
98
-
# Further customization
98
+
##Further customization
99
99
100
-
## Custom Settings
100
+
###Custom Settings
101
101
102
102
You may override any of the default settings by setting them in
103
103
`sample_project/settings.py`. It is strongly recommended that you only override the
@@ -157,18 +157,20 @@ same name.
157
157
</div>
158
158
{% endblock %}
159
159
160
+
### Baselines and Comparison view executables
160
161
161
-
## Baselines and Comparison view executables
162
162
* The results associated to an executable and a revision which has a non blank
163
163
tag field will be listed as a baseline option in the Timeline view.
164
164
* Additionaly, the Comparison view will show the results of the latest revision
165
165
of projects being tracked as an executable as well.
166
166
167
-
## Defaults
167
+
### Defaults
168
+
168
169
The file `sample_project/settings.py` can contain customizations of
169
170
several parameters (the file includes comments with full examples).
170
171
171
-
### General settings:
172
+
### General settings
173
+
172
174
*`WEBSITE_NAME`: The RSS results feed will use this parameter as the site name
173
175
*`DEF_BASELINE`: Defines which baseline option will be chosen as default in
174
176
the Timeline and Changes views.
@@ -177,19 +179,35 @@ several parameters (the file includes comments with full examples).
177
179
*`CHANGE_THRESHOLD`
178
180
*`TREND_THRESHOLD`
179
181
182
+
### Home Page
183
+
184
+
The main customization for the homepage is to display either the reports
185
+
(daily changes) or the historical graphs (improvement over time).
186
+
187
+
*`SHOW_REPORTS`: If set to `True` displays a table and RSS feed with the latest results
188
+
*`SHOW_HISTORICAL`: Displays two graphs comparing tagged and latest versions of the default executable and project to the configured baseline.
189
+
190
+
To activate the historical graphs you will need to set the following settings (using values that work with the test data):
0 commit comments