| author | ymh <ymh.work@gmail.com> |
| Tue, 03 Dec 2013 13:54:30 +0100 | |
| changeset 160 | 470ea7806537 |
| parent 158 | 03fea67e18e9 |
| permissions | -rw-r--r-- |
| 121 | 1 |
************ |
2 |
Architecture |
|
3 |
************ |
|
4 |
||
|
137
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
5 |
.. image:: _static/architecture.png |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
6 |
|
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
7 |
|
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
8 |
L'application Back-Office Plan4Learning utilise les technologies suivantes: |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
9 |
|
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
10 |
*Django* - https://www.djangoproject.com/ |
| 158 | 11 |
C'est un framework web basé sur Python. De nombreux modules sont disponibles pour étendre ses fonctionnalités. |
12 |
En particulier, nous utilisons les modules suivants : |
|
|
137
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
13 |
|
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
14 |
* *South* - http://south.aeracode.org/. Ce module permet de gérer les migration de bases de données (schéma + données). |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
15 |
On peut alors facilement appliquer les changements du modèle de donnée sur un système en production. |
| 158 | 16 |
* *Django REST Framework* - http://django-rest-framework.org/ : Permet de facilement de facilement mettre en œuvre une API de type REST. |
|
137
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
17 |
* *haystack* - http://haystacksearch.org/ : Facilite l'utilisation dans Django des moteurs d'indexation full-text comme Lucene ou elasticsearch |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
18 |
|
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
19 |
*Postgresql* - http://www.postgresql.org/ |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
20 |
Base de donnée relationnelle. Nous l'utilisons en fait par l'intermédiaire de la couche ORM de Django |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
21 |
|
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
22 |
*Sesame* - http://www.openrdf.org/ |
| 158 | 23 |
C'est en fait un framework de gestion RDF. Nous l'utilisons ici comme triple store RDF et endpoint SPARQL |
|
137
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
24 |
|
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
25 |
*Elasticsearch* - http://www.elasticsearch.org/ |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
26 |
Moteur d'indexation full-text basé sur Lucene. Nous l'utilisons par l'intermédiaire du module Django Haystack. |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
27 |
|
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
28 |
*Angularjs* - http://angularjs.org/ |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
29 |
Framework javascript. Nous l'utilisons en particulier dans la page d'édition des notices afin de gérer les interactions complexes entre la notice et ses sous-objets. |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
30 |
|
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
31 |
*Bootstrap* - http://getbootstrap.com/ |
| 158 | 32 |
Framework CSS. Il a été utilisé sur toutes les pages de l'application. |
|
137
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
33 |
|
| 158 | 34 |