Skip to content

Commit

Permalink
Suppression clap
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan7594 committed Feb 22, 2024
1 parent 9fc340b commit 17a9dbc
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,4 @@ test.html
docker-compose.build.yml
docker-compose.bdd.yml

*.http

docker-compose-windows.yml
*.http
22 changes: 22 additions & 0 deletions docker-compose-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
version: '3.7'
services:
mysql:
image: mysql:8
environment:
- MYSQL_ROOT_PASSWORD=my-secret-pw
healthcheck:
test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"]
timeout: 20s
retries: 10
ports:
- '3306:3306'
- '33060:33060'
volumes:
- ./.mysql-data:/var/lib/mysql
minio:
image: minio/minio
ports:
- '9000:9000'
volumes:
- ./.minio-data:/data
command: server /data
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import React from 'react';
import ReactPlayer from 'react-player';
import { useQueryClient } from 'react-query';

import ArrowRightAltIcon from '@mui/icons-material/ArrowRightAlt';
import CloudUploadIcon from '@mui/icons-material/CloudUpload';
import SettingsIcon from '@mui/icons-material/Settings';
import { Button, Divider, TextField } from '@mui/material';
Expand Down Expand Up @@ -187,13 +186,13 @@ export const VideoModals = ({ id, isModalOpen, setIsModalOpen, videoUrl, setVide
>
{step === 0 && (
<>
<div style={{ padding: '0.5rem' }}>
{/* <div style={{ padding: '0.5rem' }}>
<Alert icon={<ArrowRightAltIcon />} severity="info">
<a className="text text--bold" href="https://clap.parlemonde.org" target="_blank" rel="noreferrer">
Créer une vidéo sur Clap!
</a>
</Alert>
</div>
</div> */}
<div style={{ display: 'flex', width: '100%', height: '20rem' }}>
<div style={{ flex: 1, height: '100%', padding: '4rem 0.5rem', minWidth: 0 }}>
<div id={`video-edit-${id}-desc`}>
Expand Down

0 comments on commit 17a9dbc

Please sign in to comment.