-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevfile.yaml
More file actions
54 lines (54 loc) · 1.46 KB
/
devfile.yaml
File metadata and controls
54 lines (54 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
commands:
- exec:
commandLine: npm install
component: runtime
group:
isDefault: true
kind: build
workingDir: ${PROJECT_SOURCE}
id: install
- exec:
commandLine: npm run start
component: runtime
group:
isDefault: true
kind: run
hotReloadCapable: true
workingDir: ${PROJECT_SOURCE}
id: run
components:
- container:
args:
- tail
- -f
- /dev/null
endpoints:
- name: http-angular
targetPort: 4200
image: registry.access.redhat.com/ubi8/nodejs-18:1-135.1736298172
memoryLimit: 1024Mi
name: runtime
metadata:
description: 'Angular is a development platform, built on TypeScript. As a platform,
Angular includes: A component-based framework for building scalable web applications
A collection of well-integrated libraries that cover a wide variety of features,
including routing, forms management, client-server communication, and more A suite
of developer tools to help you develop, build, test, and update your code'
displayName: Angular
icon: https://raw.githubusercontent.com/devfile-samples/devfile-stack-icons/main/angular.svg
language: TypeScript
name: angular-node
projectType: Angular
provider: Red Hat
tags:
- Node.js
- Angular
version: 2.1.0
schemaVersion: 2.1.0
starterProjects:
- git:
checkoutFrom:
revision: main
remotes:
origin: https://github.com/devfile-samples/devfile-stack-nodejs-angular.git
name: nodejs-angular-starter