├── .gitignore ├── favicon.ico ├── assets └── 38521354191_0f9b6016bc_b.jpg ├── 38521354191_0f9b6016bc_b.417c8e5df6111de00bb7.jpg ├── polyfills-es2015.94d3ba46aae3a65c2d88.js.LICENSE.txt ├── polyfills-es5-es2015.2b49def4071ac93e81dd.js.LICENSE.txt ├── package.json ├── index.html ├── main-es2015.bd44af9c4a4f085f43e6.js.LICENSE.txt ├── runtime-es2015.cdfb0ddb511f65fdc0a0.js ├── runtime-es5.cdfb0ddb511f65fdc0a0.js ├── 3rdpartylicenses.txt ├── polyfills-es2015.94d3ba46aae3a65c2d88.js └── polyfills-es5.2b49def4071ac93e81dd.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClassrooms-Student-Center/go-fullstack-v3-fr/HEAD/favicon.ico -------------------------------------------------------------------------------- /assets/38521354191_0f9b6016bc_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClassrooms-Student-Center/go-fullstack-v3-fr/HEAD/assets/38521354191_0f9b6016bc_b.jpg -------------------------------------------------------------------------------- /38521354191_0f9b6016bc_b.417c8e5df6111de00bb7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenClassrooms-Student-Center/go-fullstack-v3-fr/HEAD/38521354191_0f9b6016bc_b.417c8e5df6111de00bb7.jpg -------------------------------------------------------------------------------- /polyfills-es2015.94d3ba46aae3a65c2d88.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright Google Inc. All Rights Reserved. 4 | * 5 | * Use of this source code is governed by an MIT-style license that can be 6 | * found in the LICENSE file at https://angular.io/license 7 | */ 8 | -------------------------------------------------------------------------------- /polyfills-es5-es2015.2b49def4071ac93e81dd.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright Google Inc. All Rights Reserved. 4 | * 5 | * Use of this source code is governed by an MIT-style license that can be 6 | * found in the LICENSE file at https://angular.io/license 7 | */ 8 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "go-fullstack-v3-fr", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.html", 6 | "scripts": { 7 | "start": "npx http-server . -p 4200 -P \"http://localhost:4200?\"" 8 | }, 9 | "author": "", 10 | "license": "ISC", 11 | "dependencies": { 12 | "http-server": "^13.0.1" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |