This commit is contained in:
Mylloon 2022-10-06 14:21:13 +02:00
parent 7b844d40af
commit fd0fb97e48
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
3 changed files with 23 additions and 22 deletions

View file

@ -1,6 +1,9 @@
# Sand # Sand
## Exécution ## Exécution
Préparation de l'environnement Préparation de l'environnement
```bash ```bash
$ python3 -m venv . $ python3 -m venv .
$ source bin/activate $ source bin/activate
@ -8,6 +11,7 @@ $ pip install -r requirements.txt
``` ```
Lancement Lancement
```bash ```bash
$ python3 -m flask --app src/app.py run $ python3 -m flask --app src/app.py run
``` ```

View file

@ -1,19 +1,17 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="fr"> <html lang="fr">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{ name }} - Index</title> <title>{{ name }} - Index</title>
<link rel="stylesheet" href="../styles/style.css"> <link rel="stylesheet" href="../styles/style.css" />
</head> </head>
<body> <body>
<header class="text-center"> <header class="text-center">
<h1 class="text-title">Sand</h1> <h1 class="text-title">Sand</h1>
</header> </header>
<main> <main>
@ -24,5 +22,4 @@
<p>placeholder-footer</p> <p>placeholder-footer</p>
</footer> </footer>
</body> </body>
</html> </html>