Skip to content

Commit 9012e20

Browse files
committed
Initial commit
0 parents  commit 9012e20

8 files changed

Lines changed: 194 additions & 0 deletions

File tree

.devops/azure-pipelines.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
resources:
2+
repositories:
3+
- repository: templates
4+
type: github
5+
name: ExtendRealityLtd/DevOps
6+
ref: refs/tags/v3.12.0
7+
endpoint: ExtendRealityLtd
8+
9+
variables:
10+
- group: Build
11+
- group: Publish
12+
13+
jobs:
14+
- template: templates/jobs/cd.yml@templates

.github/dependabot.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: npm
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
time: "09:00"
8+
timezone: Europe/Berlin
9+
open-pull-requests-limit: 10
10+
reviewers:
11+
- thestonefox
12+
labels:
13+
- dependency-update
14+
versioning-strategy: increase
15+
commit-message:
16+
prefix: chore
17+
include: scope

.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
[Ll]ibrary/
2+
[Tt]emp/
3+
[Oo]bj/
4+
[Oo]bj.meta
5+
[Bb]uild/
6+
[Bb]uilds/
7+
[Ll]ogs/
8+
9+
# Visual Studio cache directory
10+
.vs/
11+
12+
# Autogenerated VS/MD/Consulo solution and project files
13+
ExportedObj/
14+
.consulo/
15+
*.csproj
16+
*.unityproj
17+
*.sln
18+
*.suo
19+
*.tmp
20+
*.user
21+
*.userprefs
22+
*.pidb
23+
*.booproj
24+
*.svd
25+
*.pdb
26+
*.mdb
27+
*.opendb
28+
*.VC.db
29+
30+
# Builds
31+
*.apk
32+
*.unitypackage
33+
34+
# System files
35+
.DS_Store
36+
*.swp

CHANGELOG.md

Whitespace-only changes.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Installing the package
2+
3+
> * Level: Beginner
4+
>
5+
> * Reading Time: {x} minutes
6+
>
7+
> * Checked with: {platform and version}
8+
9+
## Introduction
10+
11+
{Description of how the package is digested into the supported platform.}
12+
13+
## Let's Start
14+
15+
### Step X
16+
17+
{Describe each step with any useful imagery.}
18+
19+
### Done

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Extend Reality Ltd
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
[![Tilia logo][Tilia-Image]](#)
2+
3+
> ### Tilia {scope} {feature} {platform?}
4+
> {Description of feature}.
5+
6+
[![Release][Version-Release]][Releases]
7+
[![License][License-Badge]][License]
8+
[![Backlog][Backlog-Badge]][Backlog]
9+
10+
## Introduction
11+
12+
{Introduction into the purpose of the feature.}
13+
14+
> **Requires** {platform and minimum version number}.
15+
16+
## Getting Started
17+
18+
Please refer to the [installation] guide to install this package.
19+
20+
## Documentation
21+
22+
Please refer to the [How To Guides] for usage of this package.
23+
24+
Further documentation can be found within the [Documentation] directory and at https://academy.vrtk.io
25+
26+
## Contributing
27+
28+
Please refer to the Extend Reality [Contributing guidelines] and the [project coding conventions].
29+
30+
## Code of Conduct
31+
32+
Please refer to the Extend Reality [Code of Conduct].
33+
34+
## License
35+
36+
Code released under the [MIT License][License].
37+
38+
[License-Badge]: https://img.shields.io/github/license/ExtendRealityLtd/Tilia.{scope}.{feature}.{platform?}.svg
39+
[Version-Release]: https://img.shields.io/github/release/ExtendRealityLtd/Tilia.{scope}.{feature}.{platform?}.svg
40+
[project coding conventions]: https://github.com/ExtendRealityLtd/.github/blob/master/CONVENTIONS/{project_type}
41+
42+
[Tilia-Image]: https://user-images.githubusercontent.com/1029673/67681496-5bf10700-f985-11e9-9413-e61801b6eab5.png
43+
[License]: LICENSE.md
44+
[Documentation]: Documentation/
45+
[How To Guides]: Documentation/HowToGuides/
46+
[Installation]: Documentation/HowToGuides/Installation/README.md
47+
[Backlog]: http://tracker.vrtk.io
48+
[Backlog-Badge]: https://img.shields.io/badge/project-backlog-78bdf2.svg
49+
[Releases]: ../../releases
50+
[Contributing guidelines]: https://github.com/ExtendRealityLtd/.github/blob/master/CONTRIBUTING.md
51+
[Code of Conduct]: https://github.com/ExtendRealityLtd/.github/blob/master/CODE_OF_CONDUCT.md

package.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"name": "io.extendreality.tilia.{scope}.{feature}.{platform?}",
3+
"displayName": "Tilia {scope}.{feature}.{platform?}",
4+
"description": "{Description of feature.}",
5+
"version": "1.0.0",
6+
"unity": "2018.3",
7+
"unityRelease": "10f1",
8+
"keywords": [
9+
"pattern"
10+
],
11+
"homepage": "https://github.com/ExtendRealityLtd/Tilia.{scope}.{feature}.{platform?}/",
12+
"bugs": {
13+
"url": "https://github.com/ExtendRealityLtd/Tilia.{scope}.{feature}.{platform?}/issues"
14+
},
15+
"repository": {
16+
"type": "git",
17+
"url": "ssh://git@github.com/ExtendRealityLtd/Tilia.{scope}.{feature}.{platform?}.git"
18+
},
19+
"license": "MIT",
20+
"author": {
21+
"name": "Extend Reality Ltd",
22+
"email": "hello@extendreality.io",
23+
"url": "https://github.com/ExtendRealityLtd"
24+
},
25+
"dependencies": {
26+
"io.extendreality.zinnia.unity": "X.Y.Z"
27+
},
28+
"files": [
29+
"*.md",
30+
"*.meta",
31+
"*.asmdef",
32+
"*.xml",
33+
"Documentation",
34+
"Runtime"
35+
]
36+
}

0 commit comments

Comments
 (0)