Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
compgeniuses authored Jun 27, 2024
0 parents commit aebb6f9
Show file tree
Hide file tree
Showing 70 changed files with 13,338 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.245.2/containers/javascript-node
{
"name": "ns8-kickstart",
"image": "mcr.microsoft.com/devcontainers/javascript-node:0-18-bullseye",
// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"octref.vetur",
"shenjiaolong.vue-helper",
"waderyan.gitblame",
"streetsidesoftware.code-spell-checker"
]
}
},
// If you're using docker to develop with vscode, comment all options below and rebuild without cache the container.
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace,type=bind,Z",
"workspaceFolder": "/workspace",
// --userns=keep-id is used to correctly mount podman volume
// --network=host is required for hot-reload
"runArgs": ["--userns=keep-id", "--network=host"],
"containerUser": "node",
"remoteUser": "node"
}
12 changes: 12 additions & 0 deletions .github/workflows/build-apidoc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: "Build API JSON Schema docs"

on:
push:
paths:
- '**/validate-input.json'
- '**/validate-output.json'
- '**/validator-definitions.json'

jobs:
build-apidoc:
uses: NethServer/ns8-github-actions/.github/workflows/build-apidoc.yml@v1
9 changes: 9 additions & 0 deletions .github/workflows/clean-apidoc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: "Clean up API JSON Schema docs"

on:
delete:

jobs:
build-apidoc:
name: "Delete apidoc branch ${{ github.event.ref }}"
uses: NethServer/ns8-github-actions/.github/workflows/clean-apidoc.yml@v1
19 changes: 19 additions & 0 deletions .github/workflows/clean-registry.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: "Clean up registry"

on:
delete:
workflow_dispatch:

permissions:
packages: write

jobs:
delete_images:
name: "Delete ghcr.io images ${{ github.event.ref }}"
runs-on: ubuntu-latest
environment: Registry
steps:
- uses: NethServer/ns8-github-actions/.github/actions/delete-image@v1
with:
images: "kickstart"
delete_image_token: ${{ secrets.IMAGES_CLEANUP_TOKEN }}
12 changes: 12 additions & 0 deletions .github/workflows/publish-images.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: "Publish images"

on:
push:

permissions:
packages: write

jobs:
publish-images:
if: github.run_number > 1
uses: NethServer/ns8-github-actions/.github/workflows/publish-branch.yml@v1
26 changes: 26 additions & 0 deletions .github/workflows/test-module.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Test module

on:
workflow_dispatch:
inputs:
debug_shell:
description: "Debug shell"
required: true
type: boolean
workflow_run:
workflows: ["Publish images"]
types: [completed]

jobs:
module:
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event.workflow_run.conclusion == '' }}
uses: NethServer/ns8-github-actions/.github/workflows/module-info.yml@main
run_tests:
needs: module
uses: NethServer/ns8-github-actions/.github/workflows/test-on-digitalocean-infra.yml@main
with:
args: "ghcr.io/${{needs.module.outputs.owner}}/${{needs.module.outputs.name}}:${{needs.module.outputs.tag}}"
repo_ref: ${{needs.module.outputs.sha}}
debug_shell: ${{ github.event.inputs.debug_shell == 'true' || false }}
secrets:
do_token: ${{ secrets.do_token }}
104 changes: 104 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"terminal.integrated.env.linux": {
"NODE_OPTIONS": "--openssl-legacy-provider"
}
}
Loading

0 comments on commit aebb6f9

Please sign in to comment.