docker compose

This commit is contained in:
2025-10-27 14:40:01 +05:00
parent e34f1baf50
commit 51a3308f8c
15 changed files with 221 additions and 13 deletions

20
frontend/index.html Normal file
View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Dither</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<script src="index.js"></script>
<form action="http://localhost:8080/dither" method="post" enctype="multipart/form-data">
<input name="source" type="file" accept="image/jpeg, image/png" />
<input type="submit" />
</form>
</body>
</html>

0
frontend/index.js Normal file
View File