├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github └── workflows │ ├── add-operation-column-and-index.yml │ ├── connect-to-gcp.yaml │ ├── create-database.yml │ ├── create-db-branch-and-pr-dr.yml │ ├── hello.yaml │ ├── image_processing.yml │ ├── issue-ops-ps-commands.yml │ ├── matrix-build-custom-runner-nektos.yml │ ├── matrix-build-custom-runner.yml │ ├── matrix-build-hosted-runner.yml │ ├── merge-latest-open-deploy-request.yml │ ├── remove-database.yml │ ├── remove-operation-column-and-index.yml │ ├── show-node-allocation.yaml │ ├── streampixels.yaml │ ├── visualize-matrix-build-gui.yaml │ ├── visualize-matrix-build-led.yml │ └── visualize-matrix-build-nektos.yml ├── .gitignore ├── .pscale └── cli-helper-scripts │ ├── add-operation-column-and-index.sh │ ├── approve-deploy-request.sh │ ├── authenticate-ps.sh │ ├── create-branch-connection-string.sh │ ├── create-database.sh │ ├── create-db-branch-dr-and-connection.sh │ ├── delete-db-branch.sh │ ├── export-db-connection-string.sh │ ├── merge-deploy-request.sh │ ├── merge-latest-open-deploy-request.sh │ ├── ps-create-helper-functions.sh │ ├── ps-env-template.sh │ ├── remove-database.sh │ ├── remove-operation-column-and-index.sh │ ├── retrieve-branch-info.sh │ ├── retrieve-deploy-request-info.sh │ ├── set-db-and-org-and-branch-name.sh │ ├── set-db-and-org-name.sh │ ├── set-db-url.sh │ ├── update-db-branch.sh │ ├── use-pscale-docker-image.sh │ ├── wait-for-branch-readiness.sh │ └── wait-for-deploy-request-merged.sh ├── Dockerfile.base ├── README.md ├── __pycache__ └── constants.cpython-39.pyc ├── actions-runner-controller-runner-deployment-ese.yml ├── advanced-schema-stream-parameters.json ├── certs.pem ├── connect-to-kubernetes-via-act.sh ├── constants.py ├── events-nektos.json ├── fluxbox └── menu ├── gui.py ├── images ├── blackandblue.png ├── blackbluenumbers.png ├── blackbluereset.png ├── done.png ├── github-actions.png ├── github-longer.png ├── hubot.png ├── images │ ├── static_image.jpg │ └── winterfest.png ├── matrix-construct-grid.png ├── matrix-construct-vitess.png ├── matrix-finished.png ├── matrix-reset.png ├── matrix-start-witout-numbers.png ├── matrix-start.png ├── monahubot.png ├── non-blocking-schema-change-text.png ├── non-blocking-schema-change.png ├── numbers-blue.png ├── numbers-grey.png ├── numbers-white.png ├── ps-finished.png ├── ps-start.png ├── publish-pixels-ps.py ├── publish-pixels.py ├── reset-green.png ├── reset-grey.png ├── reset.pxi ├── run.py ├── summer-finished.png ├── summer-start.png └── visualize-matrix-build.py ├── library-scripts ├── common-debian.sh ├── desktop-lite-debian.sh └── docker-in-docker-debian.sh ├── ps-database-scripts ├── add-operation-column-and-index.sh ├── create-database.sh ├── merge-latest-open-deploy-request.sh ├── remove-operation-column-and-index.sh ├── use-pscale-docker-image.sh ├── wait-for-branch-readiness.sh └── wait-for-deploy-request-merged.sh ├── redis-scripts ├── expose-redis.yml └── redis.md ├── render-matrix-cell.py ├── requirements.txt ├── samplebase.py ├── show-node-allocation-aws.sh ├── show-node-allocation-blinkt.py ├── show-node-allocation-gcp.sh ├── show-node-allocation-gui.py ├── show-node-allocation-raspi.sh ├── show-node-allocation.py ├── simulate-action-workflow.sh ├── simulate-matrix-build-custom-runner.sh ├── start-advanced-schema-stream.sh ├── start-gui.sh ├── stream-pixels-gcp.sh ├── stream-pixels-gui.py ├── stream-pixels-raspi.sh ├── stream-pixels.py └── test-parameters.json /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/add-operation-column-and-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.github/workflows/add-operation-column-and-index.yml -------------------------------------------------------------------------------- /.github/workflows/connect-to-gcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.github/workflows/connect-to-gcp.yaml -------------------------------------------------------------------------------- /.github/workflows/create-database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.github/workflows/create-database.yml -------------------------------------------------------------------------------- /.github/workflows/create-db-branch-and-pr-dr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.github/workflows/create-db-branch-and-pr-dr.yml -------------------------------------------------------------------------------- /.github/workflows/hello.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.github/workflows/hello.yaml -------------------------------------------------------------------------------- /.github/workflows/image_processing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.github/workflows/image_processing.yml -------------------------------------------------------------------------------- /.github/workflows/issue-ops-ps-commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.github/workflows/issue-ops-ps-commands.yml -------------------------------------------------------------------------------- /.github/workflows/matrix-build-custom-runner-nektos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.github/workflows/matrix-build-custom-runner-nektos.yml -------------------------------------------------------------------------------- /.github/workflows/matrix-build-custom-runner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.github/workflows/matrix-build-custom-runner.yml -------------------------------------------------------------------------------- /.github/workflows/matrix-build-hosted-runner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.github/workflows/matrix-build-hosted-runner.yml -------------------------------------------------------------------------------- /.github/workflows/merge-latest-open-deploy-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.github/workflows/merge-latest-open-deploy-request.yml -------------------------------------------------------------------------------- /.github/workflows/remove-database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.github/workflows/remove-database.yml -------------------------------------------------------------------------------- /.github/workflows/remove-operation-column-and-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.github/workflows/remove-operation-column-and-index.yml -------------------------------------------------------------------------------- /.github/workflows/show-node-allocation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.github/workflows/show-node-allocation.yaml -------------------------------------------------------------------------------- /.github/workflows/streampixels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.github/workflows/streampixels.yaml -------------------------------------------------------------------------------- /.github/workflows/visualize-matrix-build-gui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.github/workflows/visualize-matrix-build-gui.yaml -------------------------------------------------------------------------------- /.github/workflows/visualize-matrix-build-led.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.github/workflows/visualize-matrix-build-led.yml -------------------------------------------------------------------------------- /.github/workflows/visualize-matrix-build-nektos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.github/workflows/visualize-matrix-build-nektos.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .venv/* 2 | _actions/* -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/add-operation-column-and-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/add-operation-column-and-index.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/approve-deploy-request.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/approve-deploy-request.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/authenticate-ps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/authenticate-ps.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/create-branch-connection-string.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/create-branch-connection-string.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/create-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/create-database.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/create-db-branch-dr-and-connection.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/create-db-branch-dr-and-connection.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/delete-db-branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/delete-db-branch.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/export-db-connection-string.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/export-db-connection-string.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/merge-deploy-request.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/merge-deploy-request.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/merge-latest-open-deploy-request.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/merge-latest-open-deploy-request.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/ps-create-helper-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/ps-create-helper-functions.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/ps-env-template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/ps-env-template.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/remove-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/remove-database.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/remove-operation-column-and-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/remove-operation-column-and-index.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/retrieve-branch-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/retrieve-branch-info.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/retrieve-deploy-request-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/retrieve-deploy-request-info.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/set-db-and-org-and-branch-name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/set-db-and-org-and-branch-name.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/set-db-and-org-name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/set-db-and-org-name.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/set-db-url.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/set-db-url.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/update-db-branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/update-db-branch.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/use-pscale-docker-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/use-pscale-docker-image.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/wait-for-branch-readiness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/wait-for-branch-readiness.sh -------------------------------------------------------------------------------- /.pscale/cli-helper-scripts/wait-for-deploy-request-merged.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/.pscale/cli-helper-scripts/wait-for-deploy-request-merged.sh -------------------------------------------------------------------------------- /Dockerfile.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/Dockerfile.base -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/constants.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/__pycache__/constants.cpython-39.pyc -------------------------------------------------------------------------------- /actions-runner-controller-runner-deployment-ese.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/actions-runner-controller-runner-deployment-ese.yml -------------------------------------------------------------------------------- /advanced-schema-stream-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/advanced-schema-stream-parameters.json -------------------------------------------------------------------------------- /certs.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/certs.pem -------------------------------------------------------------------------------- /connect-to-kubernetes-via-act.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/connect-to-kubernetes-via-act.sh -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/constants.py -------------------------------------------------------------------------------- /events-nektos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/events-nektos.json -------------------------------------------------------------------------------- /fluxbox/menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/fluxbox/menu -------------------------------------------------------------------------------- /gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/gui.py -------------------------------------------------------------------------------- /images/blackandblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/blackandblue.png -------------------------------------------------------------------------------- /images/blackbluenumbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/blackbluenumbers.png -------------------------------------------------------------------------------- /images/blackbluereset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/blackbluereset.png -------------------------------------------------------------------------------- /images/done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/done.png -------------------------------------------------------------------------------- /images/github-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/github-actions.png -------------------------------------------------------------------------------- /images/github-longer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/github-longer.png -------------------------------------------------------------------------------- /images/hubot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/hubot.png -------------------------------------------------------------------------------- /images/images/static_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/images/static_image.jpg -------------------------------------------------------------------------------- /images/images/winterfest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/images/winterfest.png -------------------------------------------------------------------------------- /images/matrix-construct-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/matrix-construct-grid.png -------------------------------------------------------------------------------- /images/matrix-construct-vitess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/matrix-construct-vitess.png -------------------------------------------------------------------------------- /images/matrix-finished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/matrix-finished.png -------------------------------------------------------------------------------- /images/matrix-reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/matrix-reset.png -------------------------------------------------------------------------------- /images/matrix-start-witout-numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/matrix-start-witout-numbers.png -------------------------------------------------------------------------------- /images/matrix-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/matrix-start.png -------------------------------------------------------------------------------- /images/monahubot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/monahubot.png -------------------------------------------------------------------------------- /images/non-blocking-schema-change-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/non-blocking-schema-change-text.png -------------------------------------------------------------------------------- /images/non-blocking-schema-change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/non-blocking-schema-change.png -------------------------------------------------------------------------------- /images/numbers-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/numbers-blue.png -------------------------------------------------------------------------------- /images/numbers-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/numbers-grey.png -------------------------------------------------------------------------------- /images/numbers-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/numbers-white.png -------------------------------------------------------------------------------- /images/ps-finished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/ps-finished.png -------------------------------------------------------------------------------- /images/ps-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/ps-start.png -------------------------------------------------------------------------------- /images/publish-pixels-ps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/publish-pixels-ps.py -------------------------------------------------------------------------------- /images/publish-pixels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/publish-pixels.py -------------------------------------------------------------------------------- /images/reset-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/reset-green.png -------------------------------------------------------------------------------- /images/reset-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/reset-grey.png -------------------------------------------------------------------------------- /images/reset.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/reset.pxi -------------------------------------------------------------------------------- /images/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/run.py -------------------------------------------------------------------------------- /images/summer-finished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/summer-finished.png -------------------------------------------------------------------------------- /images/summer-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/summer-start.png -------------------------------------------------------------------------------- /images/visualize-matrix-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/images/visualize-matrix-build.py -------------------------------------------------------------------------------- /library-scripts/common-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/library-scripts/common-debian.sh -------------------------------------------------------------------------------- /library-scripts/desktop-lite-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/library-scripts/desktop-lite-debian.sh -------------------------------------------------------------------------------- /library-scripts/docker-in-docker-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/library-scripts/docker-in-docker-debian.sh -------------------------------------------------------------------------------- /ps-database-scripts/add-operation-column-and-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/ps-database-scripts/add-operation-column-and-index.sh -------------------------------------------------------------------------------- /ps-database-scripts/create-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/ps-database-scripts/create-database.sh -------------------------------------------------------------------------------- /ps-database-scripts/merge-latest-open-deploy-request.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/ps-database-scripts/merge-latest-open-deploy-request.sh -------------------------------------------------------------------------------- /ps-database-scripts/remove-operation-column-and-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/ps-database-scripts/remove-operation-column-and-index.sh -------------------------------------------------------------------------------- /ps-database-scripts/use-pscale-docker-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/ps-database-scripts/use-pscale-docker-image.sh -------------------------------------------------------------------------------- /ps-database-scripts/wait-for-branch-readiness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/ps-database-scripts/wait-for-branch-readiness.sh -------------------------------------------------------------------------------- /ps-database-scripts/wait-for-deploy-request-merged.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/ps-database-scripts/wait-for-deploy-request-merged.sh -------------------------------------------------------------------------------- /redis-scripts/expose-redis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/redis-scripts/expose-redis.yml -------------------------------------------------------------------------------- /redis-scripts/redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/redis-scripts/redis.md -------------------------------------------------------------------------------- /render-matrix-cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/render-matrix-cell.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | redis 2 | PySimpleGUI 3 | pillow 4 | PyMySQL -------------------------------------------------------------------------------- /samplebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/samplebase.py -------------------------------------------------------------------------------- /show-node-allocation-aws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/show-node-allocation-aws.sh -------------------------------------------------------------------------------- /show-node-allocation-blinkt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/show-node-allocation-blinkt.py -------------------------------------------------------------------------------- /show-node-allocation-gcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/show-node-allocation-gcp.sh -------------------------------------------------------------------------------- /show-node-allocation-gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/show-node-allocation-gui.py -------------------------------------------------------------------------------- /show-node-allocation-raspi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/show-node-allocation-raspi.sh -------------------------------------------------------------------------------- /show-node-allocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/show-node-allocation.py -------------------------------------------------------------------------------- /simulate-action-workflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/simulate-action-workflow.sh -------------------------------------------------------------------------------- /simulate-matrix-build-custom-runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/simulate-matrix-build-custom-runner.sh -------------------------------------------------------------------------------- /start-advanced-schema-stream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/start-advanced-schema-stream.sh -------------------------------------------------------------------------------- /start-gui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/start-gui.sh -------------------------------------------------------------------------------- /stream-pixels-gcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/stream-pixels-gcp.sh -------------------------------------------------------------------------------- /stream-pixels-gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/stream-pixels-gui.py -------------------------------------------------------------------------------- /stream-pixels-raspi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/stream-pixels-raspi.sh -------------------------------------------------------------------------------- /stream-pixels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/stream-pixels.py -------------------------------------------------------------------------------- /test-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegreatestgiant/novnc/HEAD/test-parameters.json --------------------------------------------------------------------------------