-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 904e086
Showing
267 changed files
with
24,343 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
name: New request | ||
about: Submit a new request for a project/demo | ||
title: '[demo/project] company-demo/project-name' | ||
labels: [] | ||
projects: ["netzo/12"] | ||
--- | ||
|
||
**Requester:** @username **Company:** Company Name **Due date:** yyyy-mm-dd | ||
|
||
### Overview | ||
|
||
An overview of what is to be done. Include any relevant links, mockups, images, | ||
(mermaid) diagrams, etc. | ||
|
||
### Goals | ||
|
||
- [ ] Goal 1 | ||
- [ ] Goal 2 | ||
|
||
### Objectives | ||
|
||
- [ ] Objective 1 | ||
- [ ] Objective 2 | ||
|
||
### Requirements | ||
|
||
#### Architecture | ||
|
||
- [ ] Frontend | ||
- [ ] Backend | ||
- [ ] Database | ||
|
||
#### [Integrations](https://netzo.io/modules/docs/integrations) | ||
|
||
- [ ] API 1 | ||
- [ ] API 2 | ||
|
||
#### Demo | ||
|
||
- [ ] Demo requirement 1 | ||
- [ ] Demo requirement 2 | ||
|
||
### Challenges | ||
|
||
- Challenge 1 | ||
- Challenge 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: ci | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
name: ${{ matrix.kind }} ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
|
||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup Deno | ||
uses: denoland/setup-deno@v1 | ||
|
||
- name: Format | ||
run: deno fmt --check | ||
|
||
- name: Lint | ||
run: deno lint | ||
|
||
# - name: Tests | ||
# run: deno test --allow-env --allow-net --allow-read --allow-run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: test | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
name: ${{ matrix.kind }} ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
|
||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup Deno | ||
uses: denoland/setup-deno@v1 | ||
|
||
- name: Test netzo/templates | ||
run: deno test --allow-env --no-check src |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.env | ||
.production.env | ||
*.DS_Store | ||
cov/ | ||
cov.lcov | ||
.idea | ||
backup.json | ||
html_cov/ | ||
_fresh/ | ||
tmp/ | ||
vendor/ | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"recommendations": [ | ||
"denoland.vscode-deno", | ||
"antfu.iconify", | ||
"antfu.file-nesting", | ||
"antfu.unocss", | ||
"ms-vscode.live-server" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"deno.enablePaths": [ | ||
"src" | ||
], | ||
"deno.enable": true, | ||
"deno.lint": true, | ||
"deno.unstable": true, | ||
"editor.defaultFormatter": "denoland.vscode-deno", | ||
"editor.formatOnSave": true | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.