From 6bbc662a65ac57e63b000a9f8d79a75c7f5da12b Mon Sep 17 00:00:00 2001 From: Etienne Pallier Date: Thu, 24 Mar 2016 16:18:58 +0100 Subject: [PATCH] ignore .project and .pydevproject --- .gitignore | 2 ++ README.md | 27 +++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 0 deletions(-) diff --git a/.gitignore b/.gitignore index 5a461a9..7f8428a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ .DS_Store private __pycache__ +/.project +/.pydevproject diff --git a/README.md b/README.md index e69de29..3c1d8f5 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,27 @@ +Project content: + +TODO: do + + - src/ : conteneur du projet (le nom est sans importance) + - manage.py : utilitaire en ligne de commande permettant differentes actions sur le projet + - pyros/ : the actual Python package of the project + - settings.py : project settings and configuration + - urls.py : déclaration des URLs du projet + - wsgi.py : point d'entrée pour déployer le projet avec WSGI + - pyrosapp/ : main application of the project + - admin.py : comportement de l'application dans l'interface d'administration + - apps.py : ? + - models.py : déclaration des modèles de l'application + - views.py : écriture des vues de l'application + - tests.py : tests of the application + + - database/ : database configuration and documentation + + - doc/ : project documentation + + - install/ : project installation howto + + - private/ : the content of this folder is private and thus not commited to git ; it should contain your Python3 virtual environment + + - public/ : this folder contains all public files like the web html files + - static/ -- libgit2 0.21.2