README.md
1.07 KB
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/