generated from NethServer/ns8-kickstart
-
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 eacf8cf
Showing
55 changed files
with
12,591 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,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" | ||
} |
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 @@ | ||
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 |
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 @@ | ||
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 |
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,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 }} |
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 @@ | ||
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 |
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,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 }} |
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,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 |
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,5 @@ | ||
{ | ||
"terminal.integrated.env.linux": { | ||
"NODE_OPTIONS": "--openssl-legacy-provider" | ||
} | ||
} |
Oops, something went wrong.