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

View file

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