forked from quentin/quentin.dufour.io
Update Article “2023-04-12-un-outil-sans-daemon-pour-gérer-ses-artefacts-de-build”
This commit is contained in:
parent
027d420b7c
commit
da59692a6f
1 changed files with 19 additions and 0 deletions
|
@ -97,6 +97,25 @@ aws s3api put-bucket-cors --bucket registry.deuxfleurs.org --cors-configuration
|
||||||
aws s3api put-bucket-cors --bucket download.deuxfleurs.org --cors-configuration $CORS
|
aws s3api put-bucket-cors --bucket download.deuxfleurs.org --cors-configuration $CORS
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Voilà, maintenant on a tout pour générer une page web.
|
||||||
|
|
||||||
|
## Générer une page web pour nos releases
|
||||||
|
|
||||||
|
On peut commencer simplement avec un squelette basique :
|
||||||
|
|
||||||
|
```html
|
||||||
|
e<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8"/>
|
||||||
|
<title>reg</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<pre>list</pre>
|
||||||
|
<script type="text/javascript">
|
||||||
|
console.log()
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue