Skip to content

Commit 1694e9f

Browse files
author
Scaffolder
committed
initial commit
0 parents  commit 1694e9f

File tree

8 files changed

+54
-0
lines changed

8 files changed

+54
-0
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @DTSL/data

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# What
2+
<!-- Explain what your PR is doing, changes and screenshots if applicable. JIRA ticket links or auto-reference link are expected -->
3+
4+
# Why
5+
<!-- Explain why you are raising this PR. Be explicit, JIRA link IS NOT ENOUGH :-) -->
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Catalog Info validation
2+
on:
3+
push:
4+
paths:
5+
- 'catalog-info.yaml'
6+
jobs:
7+
validator:
8+
name: Catalog Info validation
9+
uses: 'DTSL/workflows/.github/workflows/catalog-info-validation.yaml@main'

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# target-userpilot
2+
3+
Singer target for userpilot
4+
5+
## Getting started
6+
7+
TODO

catalog-info.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
apiVersion: backstage.io/v1alpha1
2+
kind: Component
3+
metadata:
4+
name: target-userpilot
5+
title: target-userpilot
6+
description: Singer target for userpilot
7+
annotations:
8+
github.com/project-slug: dtsl/target-userpilot
9+
backstage.io/techdocs-ref: dir:docs
10+
labels:
11+
generated: empty
12+
spec:
13+
type: service
14+
lifecycle: experimental
15+
owner: data

docs/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
The documentation is available at <https://backstage.51b.dev/docs/default/component/target-userpilot>

docs/docs/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# target-userpilot
2+
3+
Singer target for userpilot

docs/mkdocs.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# MkDocs configuration, more info here: https://www.mkdocs.org/user-guide/writing-your-docs/
2+
3+
site_name: 'target-userpilot'
4+
edit_uri: edit/main/docs
5+
repo_url: https://github.com/DTSL/target-userpilot
6+
plugins:
7+
- techdocs-core
8+
markdown_extensions:
9+
- toc:
10+
permalink: '#'
11+
# Adjust the nav as you need
12+
nav:
13+
- Home: index.md

0 commit comments

Comments
 (0)