-
Notifications
You must be signed in to change notification settings - Fork 0
/
forge-nextjs.yaml
47 lines (46 loc) · 1.42 KB
/
forge-nextjs.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
47
apiVersion: backstage.io/v1alpha1
kind: Template
metadata:
name: forge-nextjs-template
title: Next.js App (Forge)
description: Create a new Next.js application (React.js + Server Side Rendering) using Theodo's Forge
tags:
- experimental
- forge
- nextjs
- server-side-rendering
- reactjs
- front-end
spec:
owner: user:wrousseau
templater: forge
type: website
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
front_end_technology:
title: Front-end Technology
type: string
enum: ["Next.js (React.js + Server Side Rendering)", "React.js", "None"]
description: The chosen front-end technology
default: "Next.js (React.js + Server Side Rendering)"
back_end_technology:
title: Back-end Technology
type: string
enum: ["None", "Django (Python)", "Nest.js (Node)", "Serverless", "API Platform / Symfony (PHP)"]
description: The chosen back-end technology
default: "None"