Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelrk committed Mar 27, 2024
0 parents commit 904e086
Show file tree
Hide file tree
Showing 267 changed files with 24,343 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/ISSUE_TEMPLATE/new_request.md
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
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
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
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
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
12 changes: 12 additions & 0 deletions .gitignore
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/
9 changes: 9 additions & 0 deletions .vscode/extensions.json
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"
]
}
10 changes: 10 additions & 0 deletions .vscode/settings.json
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
}
Binary file added alivia/assets/firma-ark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions alivia/assets/firma-ark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 904e086

Please sign in to comment.