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
Copy file name to clipboardExpand all lines: README.md
+5-10Lines changed: 5 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,17 +7,13 @@ Known to be used by [PyPy](http://speed.pypy.org), [Twisted](http://speed.twiste
7
7
8
8
For an overview of some application concepts see the [wiki page](https://github.com/tobami/codespeed/wiki/Overview)
9
9
10
-
# Requirements
11
-
12
-
You will need Python 2.6+ and Django 1.4+ with South and isodate
13
-
14
-
To install all needed dependencies using pip:
10
+
# Installation
15
11
16
-
pip install -r requirements.txt
12
+
You will need Python 2.6 or 2.7.
17
13
18
14
To install dependencies and the codespeed Django app:
19
15
20
-
python setup.py install
16
+
pip install codespeed
21
17
22
18
If you want version control integration, there are additional requirements:
23
19
@@ -30,8 +26,6 @@ If you want version control integration, there are additional requirements:
30
26
Codespeed will try to clone the repo, which depending on the size of the project
31
27
can take a long time. Please be patient.
32
28
33
-
# Installation
34
-
35
29
* Download the last stable release from
36
30
[github.com/tobami/codespeed/tags](https://github.com/tobami/codespeed/tags), unpack it and install it with `python setup.py install`.
37
31
* 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`.
@@ -42,7 +36,7 @@ can take a long time. Please be patient.
42
36
python manage.py syncdb
43
37
44
38
* Create an admin user in the process.
45
-
*Migrate to the new DB Schema:
39
+
*Execute DB migrations:
46
40
47
41
python manage.py migrate
48
42
@@ -54,6 +48,7 @@ The codespeed installation can now be accessed by navigating to `http://localhos
54
48
55
49
**Note**: for production, you should configure a real server like Apache or nginx (refer to the [Django docs](http://docs.djangoproject.com/en/dev/howto/deployment/)). You should also
56
50
modify `sample_project/settings.py` and set `DEBUG = False`.
51
+
[`sample_project/README.md`](https://github.com/tobami/codespeed/tree/master/sample_project/README.md) also describes some production settings.
0 commit comments