@@ -16,6 +16,10 @@ need to install Python 3 with virtualenv in your system as well.
16
16
.. _Python 2.7 : http://www.python.org/
17
17
.. _virtualenv : http://pypi.python.org/pypi/virtualenv
18
18
.. _Git : http://git-scm.com/
19
+ .. _Homebrew : http://brew.sh/
20
+ .. _Elasticsearch : https://www.elastic.co/products/elasticsearch
21
+ .. _PostgreSQL : https://www.postgresql.org/
22
+ .. _Redis : https://redis.io/
19
23
20
24
21
25
.. note ::
@@ -42,7 +46,23 @@ need to install Python 3 with virtualenv in your system as well.
42
46
Users of other Linux distributions may need to install the equivalent
43
47
packages, depending on their system configuration.
44
48
45
- .. _Homebrew : http://brew.sh/
49
+ .. note ::
50
+
51
+ If you want full support for searching inside your Read the Docs
52
+ site you will need to install Elasticsearch _.
53
+
54
+ Ubuntu users could install this package as following::
55
+
56
+ sudo apt-get install elasticsearch
57
+
58
+ .. note ::
59
+
60
+ Besides the Python specific dependencies, you will also need Redis _.
61
+
62
+ Ubuntu users could install this package as following::
63
+
64
+ sudo apt-get install redis-server
65
+
46
66
47
67
You will need to verify that your pip version is higher than 1.5 you can do this as such::
48
68
@@ -78,7 +98,7 @@ database::
78
98
Then please create a superuser account for Django::
79
99
80
100
python manage.py createsuperuser
81
-
101
+
82
102
Now let's properly generate the static assets::
83
103
84
104
python manage.py collectstatic
@@ -101,7 +121,7 @@ Visit http://127.0.0.1:8000/ in your browser to see how it looks; you can use
101
121
the admin interface via http://127.0.0.1:8000/admin (logging in with the
102
122
superuser account you just created).
103
123
104
- For builds to properly kick off as expected, it is necessary the port
124
+ For builds to properly kick off as expected, it is necessary the port
105
125
you're serving on (i.e. ``runserver 0.0.0.0:8080 ``) match the port defined
106
126
in ``PRODUCTION_DOMAIN ``. You can utilize ``local_settings.py `` to modify this.
107
127
(By default, it's ``localhost:8000 ``)
0 commit comments