ad02830521
This is intended to make it easy to have a glimpse at the content of an event, when its width is not sufficient for its content to be displayed (without overflowing its parent). It uses an external jQuery library to display tooltips: named _tipso_ (https://github.com/object505/tipso). |
||
---|---|---|
api | ||
communication | ||
equipment | ||
event | ||
poulpe | ||
provisioning | ||
shared | ||
users | ||
.gitignore | ||
manage.py | ||
README.md | ||
requirements-devel.txt | ||
requirements-prod.txt | ||
requirements.txt | ||
Vagrantfile |
Gestion Événementiel
Vagrant
Production-like environment
Our Vagrant setup provides two ways of running GestionEvenementiel:
-
You can run the usual development server with:
python manage.py runserver 0.0.0.0:8000
Please note that we specify the interface
0.0.0.0
to make the server reachable outside the VM at addresslocalhost:8000
-
A second instance, more similar to the production environment, runs with Daphne and nginx in the VM. It runs permanently by default but is not reloaded when you update the code. To restart this server, type:
python manage.py collectstatic --noinput sudo systemctl restart daphne.service worker.service
To query this instance from the host, you have to use the address
localhost:8080
. It is a good practice to ensure that this instance works before submitting a merge request (although it might break sometimes).