-
Notifications
You must be signed in to change notification settings - Fork 0
/
forge-serverless.yaml
46 lines (45 loc) · 1.36 KB
/
forge-serverless.yaml
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
apiVersion: backstage.io/v1alpha1
kind: Template
metadata:
name: forge-serverless-template
title: Serverless App (Forge)
description: Create a new Serverless (Typescript) application using Theodo's Forge
tags:
- experimental
- forge
- typescript
- serverless
- back-end
spec:
owner: user:wrousseau
templater: forge
type: service
path: '.'
schema:
required:
- component_id
- description
- back_end_technology
- front_end_technology
properties:
component_id:
title: Name
type: string
pattern: ^[a-z0-9]+(-[a-z0-9]+)*$
description: Unique name of the service or website to create. Lowercase, URL-safe characters only.
description:
title: Description
type: string
description: Help others understand what this service or website is for
back_end_technology:
title: Back-end Technology
type: string
enum: ["Serverless", "API Platform / Symfony (PHP)", "Django (Python)", "Nest.js (Node)", "None"]
description: The chosen back-end technology
default: "Serverless"
front_end_technology:
title: Front-end Technology
type: string
enum: ["None", "React.js", "Next.js (React.js + Server Side Rendering)"]
description: The chosen front-end technology
default: "None"