cominfra
/
vote
Archived
8
0
Fork 0
This repository has been archived on 2023-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
vote/README.md

37 lines
882 B
Markdown
Raw Normal View History

2023-03-21 21:39:24 +01:00
# Service VOTE
2023-03-21 23:13:40 +01:00
Service de vote à distance Belenios. Documentation inspirée de [la documentation officielle](https://gitlab.inria.fr/belenios/belenios/-/blob/master/INSTALL.md).
2023-03-21 21:39:24 +01:00
2023-03-21 23:13:40 +01:00
## Utilisation du service
2023-03-21 21:39:24 +01:00
2023-03-21 23:13:40 +01:00
Voir la documentation pour [organiser les élections](https://www.belenios.org/organiser-une-election.html) et [l'utilisation du service en tant qu'électeur et électrice](https://www.belenios.org/instructions-fr.html).
2023-03-21 21:39:24 +01:00
2023-03-21 23:13:40 +01:00
## Installation du service
2023-03-21 21:39:24 +01:00
2023-03-21 23:13:40 +01:00
### Installation de Belenios
2023-03-21 21:39:24 +01:00
```
2023-03-21 23:13:40 +01:00
sudo apt install belenios-tool
2023-03-21 21:39:24 +01:00
```
2023-03-21 23:13:40 +01:00
### Installation du serveur web
2023-03-21 21:39:24 +01:00
2023-03-21 23:13:40 +01:00
#### Installation des dépendances
2023-03-21 21:39:24 +01:00
2023-03-21 23:13:40 +01:00
```
sudo apt install opam
opam init
opam install calendar eliom csv
```
2023-03-21 21:39:24 +01:00
2023-03-21 23:13:40 +01:00
#### Compilation du serveur web depuis le dépôt
2023-03-21 21:39:24 +01:00
2023-03-21 23:13:40 +01:00
```
sudo mkdir -p /srv/belenios_web
cd /srv/belenios_web
sudo git clone https://gitlab.inria.fr/belenios/belenios.git
cd belenios
make build-release-server
```
2023-03-21 21:39:24 +01:00