« Previous -
Version 35/177
(diff) -
Next » -
Current version
Etienne Pallier, 03/25/2016 04:28 pm
Project Development¶
Project Installation page : Project Installation
HOWTO Format Redmine Wiki : http://www.redmine.org/projects/redmine/wiki/FrRedmineWikiFormatting
- Project Development
TODO¶
- Impossible d'ajouter un pays dans Country depuis admin (erreur sur pyrosuser.name)
- Impossible d'ajouter un telescope (erreur sur device.name)
- Fix plurals in admin interface (http://localhost:8000/admin):
- Country : plural "countries" and not "countrys"
- NrtAnalysiss
- Historys
- ...
- Preload some data for some tables:
- country => France, Mexico, ...
- sequencetype => 0=routine, 1=alert, ...
- userlevel => 0=normal, 1=expert, 2=admin, ...
- ...
- updated et created : champs automatiques Django
- readonly admin interface : https://gist.github.com/aaugustin/1388243
- Ecrire quelques premiers petits tests
- Tester install eclipse from scratch (vérifier qu'on n'a plus besoin de faire "set as pydev" et "set as django" et set DJANGO_MANAGE_LOCATION et set DJANGO_SETTINGS_MODULE)
- Séparation des BD Django et Pyros
- Intégration des modules Django déjà développés
- Intégration continue avec Jenkins (+ run des tests sur une VM Windows)
- Planifier la suite...
- Doc pour le meeting de mai
- pyrossu : pyrossu!
LIENS UTILES¶
- Liens vers web local :
- homepage: http://localhost:8000
- admin: http://localhost:8000/admin
- Eclipse:
- Shift-Ctrl-f (ou Shift-Cmd-f) : reformatage du fichier selon PEP8
- Shift-Ctrl-1 : make doc string ...
- Django:
- Git docs:
- Permissions gitlab: https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/permissions/permissions.md
- https://git-scm.com/docs
- https://git-scm.com/book/fr/v1/Les-bases-de-Git-Travailler-avec-des-d%C3%A9p%C3%B4ts-distants
- les workflows: https://aresu.dsi.cnrs.fr/spip.php?article219
- Git for Eclipse users : http://wiki.eclipse.org/EGit/Git_For_Eclipse_Users
- Git sur sourcesup (avec jenkins) : https://services.renater.fr/sourcesup/formation/chap04#gestion_d_un_projet_avec_git_jenkins_sonar_et_nexus
- CADOR web interface: http://cador.obs-hp.fr/ros/manual/cador_actions.html
- pylint (analyse de code) : https://www.pylint.org
- pyreverse (uml diagrams generation, inclus dans pylint) : https://www.logilab.org/blogentry/6883
- tox (a generic virtualenv management and test command line tool) : https://testrun.org/tox/latest/index.html
I - DATABASE SCHEMA (v0.2.1)¶
Error executing the thumbnail macro (Attachment PYROS_PDM_v021.png not found)
II - Get the project (from gitlab)¶
Gitlab management interface¶
https://gitlab.irap.omp.eu/epallier/pyros
https://gitlab.irap.omp.eu/epallier/pyros/team
Get the project¶
https://projects.irap.omp.eu/projects/pyros/wiki/Project_Installation#II-Get-the-project-from-gitlab
III - INSTALLATION¶
https://projects.irap.omp.eu/projects/pyros/wiki/Project_Installation#III-INSTALLATION
IV - CONFIGURATION of the Django Back Office (administration interface)¶
Configuration of the Django Back office (admin)
V - EVOLUTION OF THE MODEL¶
Linking the User model to the django's one¶
- Modifications in models.py :
- Rename User model to PyrosUser
- Rename user table name to pyros_user
- Change all occurences (User -> PyrosUser, users -> pyros_users, ...)
- from django.contrib.auth.models import User <== add at the beginning of the file
- user = models.OneToOneField(User, on_delete=models.CASCADE) <== add this field in PyrosUser declaration
- delete fields in PyrosUser : name, firstname, email, login, pass
- Modifications in admin.py :
- Change all occurences (User* -> PyrosUser*, users -> pyros_users, ...)
$ python manage.py makemigrations pyrosapp $ python manage.py migrate