Commit 6bbc662a65ac57e63b000a9f8d79a75c7f5da12b

Authored by Etienne Pallier
1 parent e649dbb9
Exists in master and in 1 other branch dev

ignore .project and .pydevproject

Showing 2 changed files with 29 additions and 0 deletions   Show diff stats
.gitignore
1 1 .DS_Store
2 2 private
3 3 __pycache__
  4 +/.project
  5 +/.pydevproject
... ...
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/
... ...