Skip to content

Latest commit

 

History

History
100 lines (67 loc) · 2.49 KB

install.serveur.md

File metadata and controls

100 lines (67 loc) · 2.49 KB

Installation sur un serveur

Prérequis

  • PHP (version 7.2 et supérieure)
  • Composer
  • Mysql (ou mariadb)
  • php-mysql (ou php-pdo_mysql)
  • php-xml
  • php-gd

Installation

Clone code

git clone https://github.com/elefan-grenoble/gestion-compte.git
cd gestion-compte

Lancer la configuration

composer install

Creer la base de donnée

php bin/console doctrine:database:create

Migrer : creation du schema

php bin/console doctrine:migration:migrate

Installer les medias

php bin/console assetic:dump

Lancer le serveur (si pas de serveur web)

php bin/console server:start

Attention, par défaut ce serveur n'est pas accessible depuis l'extérieur vu qu'il écoute en local seulement (127.0.0.1). Pour le rendre accessible, il faut utiliser la commande suivante :

php bin/console server:start *:8080

Pour un usage en production, il est très fortement recommandé d'utiliser un vrai serveur Web tel que Apache ou Nginx.

Ajouter 127.0.0.1 membres.yourcoop.local au fichier /etc/hosts.

Visiter http://membres.yourcoop.local/user/install_admin pour créer l'utilisateur super admin (valeurs par défaut : admin:password)

En prod

nginx

Avec nginx, ligne necessaire pour avoir les images dynamiques de qr et barecode (au lieu de 404)

location ~* ^/sw/(.*)/(qr|br)\.png$ {
	rewrite ^/sw/(.*)/(qr|br)\.png$ /app.php/sw/$1/$2.png last;
}

crontab

# generate shifts in 27 days (same weekday as yesterday)
55 5 * * * php YOUR_INSTALL_DIR_ABSOLUTE_PATH/bin/console app:shift:generate $(date -d "+27 days" +\%Y-\%m-\%d)

# free pre-booked shifts
55 5 * * * php YOUR_INSTALL_DIR_ABSOLUT_PATH/bin/console app:shift:free $(date -d "+21 days" +\%Y-\%m-\%d)

# send reminder 2 days before shift
0 6 * * * php YOUR_INSTALL_DIR_ABSOLUT_PATH/bin/console app:shift:reminder $(date -d "+2 days" +\%Y-\%m-\%d)

# execute routine for cycle_end/cycle_start, everyday
5 6 * * * php YOUR_INSTALL_DIR_ABSOLUT_PATH/bin/console app:user:cycle_start

# send alert on shifts booking (low)
0 10 * * * php YOUR_INSTALL_DIR_ABSOLUT_PATH/bin/console app:shift:send_alerts $(date -d "+2 days" +\%Y-\%m-\%d) 1

# send a reminder mail to the user who generate the last code but did not validate the change.
45 21 * * * php YOUR_INSTALL_DIR_ABSOLUT_PATH/bin/console app:code:verify_change --last_run 24

Mise en route