up builds for bluprint

This commit is contained in:
Tykayn 2025-10-08 16:07:36 +02:00 committed by tykayn
parent 13cd2001b6
commit 963adaa8c8
14 changed files with 609 additions and 475 deletions

View file

@ -6,8 +6,6 @@
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"link-sae-lib": "bash ./scripts/link-sae-lib.sh",
"postinstall": "npm run link-sae-lib",
"test": "ng test"
},
"prettier": {
@ -37,13 +35,16 @@
"@angular/cli": "^20.1.1",
"@angular/compiler-cli": "^20.1.0",
"@types/jasmine": "~5.1.0",
"sae-lib": "file:../my-workspace/projects/sae-lib",
"sae-lib": "file:../my-workspace/dist/sae-lib",
"jasmine-core": "~5.8.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"bulma": "^1.0.4",
"remixicon": "^4.6.0",
"shepherd.js": "^14.5.1",
"typescript": "~5.8.2"
}
}

View file

@ -1,10 +1,9 @@
import {Component, signal} from '@angular/core';
import {RouterOutlet} from '@angular/router';
import {MainNav} from './nav/main-nav/main-nav';
import {FeedbackButton} from 'sae-lib/buttons/feedback-button/feedback-button';
@Component({
selector: 'app-root',
imports: [RouterOutlet, MainNav, FeedbackButton],
imports: [RouterOutlet, MainNav],
templateUrl: './app.html',
styleUrl: './app.scss'
})

BIN
blueprint/static/csc.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 MiB

View file

@ -0,0 +1,22 @@
<html>
<title>site statique pour docker</title>
<style>
body {
color: #f0f0f0;
background: #1b1d27;
}
img{
max-width: 100vw;
}
h1{
text-align: center;
}
</style>
<body>
<h1>
coucou l'index de static
</h1>
<img src="csc.png">
</body>
</html>