| author | ymh <ymh.work@gmail.com> |
| Mon, 02 Dec 2013 17:44:50 +0100 | |
| changeset 156 | 894a01c6a2b2 |
| parent 137 | bb8bf2688d7e |
| child 158 | 03fea67e18e9 |
| permissions | -rw-r--r-- |
| 121 | 1 |
|
2 |
************ |
|
3 |
Architecture |
|
4 |
************ |
|
5 |
||
|
137
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
6 |
.. image:: _static/architecture.png |
|
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 |
|
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
9 |
L'application Back-Office Plan4Learning utilise les technologies suivantes: |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
10 |
|
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
11 |
*Django* - https://www.djangoproject.com/ |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
12 |
C'est un framework web basé sur Python. de nombreux modules sont disponibles pour étendre ses fonctionnalités. |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
13 |
En particulier, nous utilisons les modules suivant: |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
14 |
|
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
15 |
* *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
|
16 |
On peut alors facilement appliquer les changements du modèle de donnée sur un système en production. |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
17 |
* *Django REST Framework* - http://django-rest-framework.org/ : Permet de facilement de facilement mettre en oeuvre une API de type REST. |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
18 |
* *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
|
19 |
|
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
20 |
*Postgresql* - http://www.postgresql.org/ |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
21 |
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
|
22 |
|
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
23 |
*Sesame* - http://www.openrdf.org/ |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
24 |
C'est en fait un framework de gestion RDF. Nous l'utilison ici comme triple store RDF et endpoint SPARQL |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
25 |
|
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
26 |
*Elasticsearch* - http://www.elasticsearch.org/ |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
27 |
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
|
28 |
|
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
29 |
*Angularjs* - http://angularjs.org/ |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
30 |
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
|
31 |
|
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
32 |
*Bootstrap* - http://getbootstrap.com/ |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
33 |
Framework CSS. Il a été utilisee sur toutes les pages de l'application. |
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
34 |
|
|
bb8bf2688d7e
- Finish and correct documentation
ymh <ymh.work@gmail.com>
parents:
121
diff
changeset
|
35 |