Commit 6bbc662a65ac57e63b000a9f8d79a75c7f5da12b
1 parent
e649dbb9
Exists in
master
and in
1 other branch
ignore .project and .pydevproject
Showing
2 changed files
with
29 additions
and
0 deletions
Show diff stats
.gitignore
README.md
... | ... | @@ -0,0 +1,27 @@ |
1 | +Project content: | |
2 | + | |
3 | +TODO: do | |
4 | + | |
5 | + - src/ : conteneur du projet (le nom est sans importance) | |
6 | + - manage.py : utilitaire en ligne de commande permettant differentes actions sur le projet | |
7 | + - pyros/ : the actual Python package of the project | |
8 | + - settings.py : project settings and configuration | |
9 | + - urls.py : déclaration des URLs du projet | |
10 | + - wsgi.py : point d'entrée pour déployer le projet avec WSGI | |
11 | + - pyrosapp/ : main application of the project | |
12 | + - admin.py : comportement de l'application dans l'interface d'administration | |
13 | + - apps.py : ? | |
14 | + - models.py : déclaration des modèles de l'application | |
15 | + - views.py : écriture des vues de l'application | |
16 | + - tests.py : tests of the application | |
17 | + | |
18 | + - database/ : database configuration and documentation | |
19 | + | |
20 | + - doc/ : project documentation | |
21 | + | |
22 | + - install/ : project installation howto | |
23 | + | |
24 | + - private/ : the content of this folder is private and thus not commited to git ; it should contain your Python3 virtual environment | |
25 | + | |
26 | + - public/ : this folder contains all public files like the web html files | |
27 | + - static/ | ... | ... |