feat(artemis/esyweb): Ajoute la gestion des tutoriels ESY-WEB

Crée une page pour lister et gérer les tutoriels ESY-WEB dans Artemis.
Ajoute un formulaire pour créer de nouveaux tutoriels.
Gère l'upload de fichiers mp4 pour les tutoriels.
This commit is contained in:
Serreau Jovann
2025-09-30 13:26:57 +02:00
parent aa0e2a281d
commit ee8ba6b2df
15 changed files with 563 additions and 5 deletions

View File

@@ -67,6 +67,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends git \
&& apt-get autoremove -y build-essential git \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
COPY ./docker/php/custom.ini /usr/local/etc/php/conf.d/custom.ini
RUN echo "zend_extension=xdebug" > /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
RUN echo "xdebug.mode=develop,debug" >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \

2
docker/php/custom.ini Normal file
View File

@@ -0,0 +1,2 @@
upload_max_filesize=128M
post_max_size=128M