deploy test

This commit is contained in:
Yanis Rigaudeau 2022-09-22 19:59:25 +02:00
parent a4e57d369c
commit b3fd6ea195
Signed by: yanis
GPG Key ID: 4DD2841DF1C94D83
3 changed files with 10 additions and 2 deletions

8
build.py Normal file
View File

@ -0,0 +1,8 @@
#!/usr/bin/python
import os
for dir in os.listdir('.'):
if os.path.isdir(dir) and not dir.startswith('.'):
os.chdir(dir)
os.system('npm run build')
os.chdir('..')

View File

@ -5,7 +5,7 @@
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width,initial-scale=1'>
<title>Svelte app</title>
<title>Coucou</title>
<link rel='icon' type='image/png' href='/favicon.png'>
<link rel='stylesheet' href='/global.css'>

View File

@ -3,7 +3,7 @@ import App from './App.svelte';
const app = new App({
target: document.body,
props: {
name: 'world'
name: 'tout le monde'
}
});