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
Instead of using distribution packages, you can use pip:
18
+
To install dependencies and the codespeed Django app:
19
19
20
-
sudo pip install -r requirements.txt
20
+
python setup.py install
21
21
22
22
If you want version control integration, there are additional requirements:
23
23
@@ -36,8 +36,8 @@ can take a long time. Please be patient.
36
36
[github.com/tobami/codespeed/tags](https://github.com/tobami/codespeed/tags), unpack it and install it with `python setup.py install`.
37
37
* To get started, you can use the `sample_project` directory as a starting point for your Django project, which can be normally configured by editing `sample_project/settings.py`.
38
38
* For simplicity, you can use the default sqlite configuration, which will save
39
-
the data to a database named `sample_project/data.db`
40
-
* Create the DB by changing to the `sample_project/` directory and running:
39
+
the data to a database named `data.db`
40
+
* Create the DB by typing from the root directory:
41
41
42
42
python manage.py syncdb
43
43
@@ -61,9 +61,9 @@ modify `sample_project/settings.py` and set `DEBUG = False`.
61
61
62
62
If you want to test drive Codespeed, you can use the testdata.json fixtures to have a working data set to browse.
0 commit comments