Compare commits

..

No commits in common. 'master' and 'ludo' have entirely different histories.
master ... ludo

@ -8,6 +8,6 @@ RUN npm install -g @angular/cli
RUN npm install
EXPOSE 80
EXPOSE 8080
CMD ["ng", "serve", "--host", "0.0.0.0", "--port", "80"]
CMD ["ng", "serve", "--host", "127.0.0.1", "--port", "8080"]

@ -11,7 +11,7 @@ steps:
- name: docker-push
image: plugins/docker
settings:
dockerfile: docker/Dockerfile
dockerfile: .Dockerfile
context: .
registry: hub.codefirst.iut.uca.fr
mirror: https://proxy.iut.uca.fr:8443

@ -4,10 +4,4 @@ by
```
Raphael LACOTE
Ludovic CASTIGLIA
```
Pour lancer le projet, Vous pouvez uttiliser le dockerfile présent dans ```./docker/Dockerfile```. Pour cela, vous devez bien sur modifier l'url de base dans le index.html et également modifier dans ```angular.json``` les deux lignes qui configure le ```baseHref``` suivant:
```
"baseHref": "/containers/ludoviccastiglia-sudoku/",
```

@ -32,7 +32,6 @@
},
"configurations": {
"production": {
"baseHref": "/containers/ludoviccastiglia-sudoku/",
"budgets": [
{
"type": "initial",
@ -48,7 +47,6 @@
"outputHashing": "all"
},
"development": {
"baseHref": "/containers/ludoviccastiglia-sudoku/",
"optimization": false,
"extractLicenses": false,
"sourceMap": true

@ -1,4 +0,0 @@
<Files *>
Order Allow,Deny
Deny from All
</Files>

@ -27,6 +27,7 @@
<button *ngFor="let obj of [].constructor(9); let i = index" (click)="addNumber(i+1)">{{i+1}}<div id="btn{{i+1}}">{{nbEachNumber[i]}}</div></button>
</div>
</section>
<section *ngIf="haveWin" class="winpopup">

@ -3,8 +3,6 @@
<head>
<meta charset="utf-8">
<title>AngularTp1</title>
<!-- <base href="/containers/ludoviccastiglia-sudoku/"> -->
<!-- pour executer en local commentez la ligne du dessus et décommentez la ligne en dessous -->
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">

@ -28,5 +28,5 @@
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
},
}
}

Loading…
Cancel
Save