-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
66 lines (44 loc) · 1.3 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
Introduction
============
Using socialapps.messages
=========================
Download
--------
socialapp.dmessages is only currently available on our private repositories. It
is available at this git URL:
git://[email protected]:iservicesmx/socialapps.dmessages.git
Installing with Buildout
-----------------------
Open your buildout.cfg file and add `socialapps.dmessages` to your list of
eggs; for example:
[django]
recipe = djangorecipe
version = 1.3
eggs=
...
socialapps.messages
After updating the configuration you need to run the ''bin/buildout'', which
will take care of updating your system.
Configure your Dajngo app
==========================
Open your settings.py file and modify where appropiate:
TEMPLATE_CONTEXT_PROCESSORS = [
...
"socialapps.dmessages.context_processors.messages_new",
]
...
INSTALLED_APPS = [
...
'socialapps.dmessages',
]
Open your urls.py file and modify where apropriate:
urlpatterns = patterns(
...
(r'^messages/', include('socialapps.dmessages.urls')),
)
Copyright and Credits
======================
`socialapps.dmessages` is Licensed under the MIT License. See LICENSE.txt for
details.
Author: iServices Developers <[email protected]>
HomePage: http://iservices.mx