├── .github └── workflows │ └── linter.yml ├── .gitignore ├── DEMO ├── env │ └── index.htsh ├── guestbook │ ├── index.htsh │ └── install.txt ├── login │ ├── index.htsh │ ├── login.css │ ├── login.htsh │ └── login.jpg ├── qrcode │ ├── index.htsh │ └── install.txt ├── upload │ └── index.htsh ├── vote │ ├── index.htsh │ └── style.css ├── wiki │ ├── base.css │ ├── index.htsh │ ├── install.txt │ └── suche.htsh └── wlan │ ├── index.htsh │ └── install.txt ├── Dockerfile ├── README.md ├── build.sh ├── docs ├── _config.yml └── index.md ├── index.htsh ├── install.sh ├── k8s ├── base │ ├── bos.yaml │ ├── kustomization.yaml │ ├── services.yaml │ └── skaffold.yaml └── production │ ├── ingress.yaml │ ├── kustomization.yaml │ ├── pvc.yaml │ └── skaffold.yaml ├── static ├── BashCheatSheet.md ├── css │ ├── signup.css │ └── style.css ├── favicon.ico ├── form.png ├── like_a_boss.png ├── lists.png ├── login.png ├── logo.png ├── running_through_the_rain.gif ├── stvssw.jpg ├── upload.png ├── wiki.png └── wlan.png └── testing.bats /.github/workflows/linter.yml: -------------------------------------------------------------------------------- 1 | --- 2 | ################################# 3 | ################################# 4 | ## Super Linter GitHub Actions ## 5 | ################################# 6 | ################################# 7 | name: Lint Code Base 8 | 9 | # 10 | # Documentation: 11 | # https://help.github.com/en/articles/workflow-syntax-for-github-actions 12 | # 13 | 14 | ############################# 15 | # Start the job on all push # 16 | ############################# 17 | on: 18 | push: 19 | branches-ignore: [master, main] 20 | # Remove the line above to run when pushing to master 21 | pull_request: 22 | branches: [master, main] 23 | 24 | ############### 25 | # Set the Job # 26 | ############### 27 | jobs: 28 | build: 29 | # Name the Job 30 | name: Lint Code Base 31 | # Set the agent to run on 32 | runs-on: ubuntu-latest 33 | 34 | ################## 35 | # Load all steps # 36 | ################## 37 | steps: 38 | ########################## 39 | # Checkout the code base # 40 | ########################## 41 | - name: Checkout Code 42 | uses: actions/checkout@v2 43 | with: 44 | # Full git history is needed to get a proper list of changed files within `super-linter` 45 | fetch-depth: 0 46 | 47 | ################################ 48 | # Run Linter against code base # 49 | ################################ 50 | - name: Lint Code Base 51 | uses: github/super-linter@v4 52 | env: 53 | VALIDATE_ALL_CODEBASE: false 54 | DEFAULT_BRANCH: master 55 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 56 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | .cache/ 3 | .sudo_as_admin_successful 4 | *.log 5 | -------------------------------------------------------------------------------- /DEMO/env/index.htsh: -------------------------------------------------------------------------------- 1 | " 7 | done 8 | ?> 9 | -------------------------------------------------------------------------------- /DEMO/guestbook/index.htsh: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 |No Plugins Just Javascript
328 | 329 | 330 | 348 | upload complete..." 361 | echo "filename: $filename size: $size $ctype
" 362 | fi 363 | ?> 364 | 365 | 366 | 367 | -------------------------------------------------------------------------------- /DEMO/vote/index.htsh: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |$content
"
84 | link_old=$link
85 | done
86 | fi
87 | ?>
88 |
89 | Hostname:
28 | 29 |IP Adress:
30 | 34 |