Refer to the installation instruction provided on the homepage.
NOTE: Once the installation script is done, it will display "Next steps". Follow them to complete the configuration.
Refer to the installation instruction provided on the homepage.
NOTE: Once the installation script is done, it will display "Next steps". Follow them to complete the configuration.
| #!/bin/bash | |
| set -e | |
| if [[ -z ${K8S_JVM_POD} ]]; then | |
| echo "K8S_JVM_POD not defined" | |
| exit 1 | |
| fi | |
| EXEC="kubectl exec ${K8S_JVM_POD}" | |
| CP="kubectl cp ${K8S_JVM_POD}" |
winget install --source winget --exact --id 7zip.7zip
winget install --source winget --exact --id Amazon.AWSCLI
winget install --source winget --exact --id Docker.DockerDesktop
winget install --source winget --exact --id EclipseAdoptium.Temurin.21.JDK
winget install --source winget --exact --id EpicGames.EpicGamesLauncher
| [tox] | |
| envlist = py36 | |
| skipsdist = True | |
| [testenv] | |
| deps = -rrequirements/dev.txt | |
| commands = pytest --full-trace -x --cov-report term --cov-report html --cov={{ project_name }} | |
| [flake8] | |
| exclude = tests/* |
| user nginx; | |
| worker_processes 1; | |
| error_log /var/log/nginx/error.log warn; | |
| pid /var/run/nginx.pid; | |
| events { | |
| worker_connections 1024; | |
| } |
| [uwsgi] | |
| socket = %d/uwsgi.sock | |
| chmod-socket = 666 | |
| chdir = %d/.. | |
| wsgi-file = wsgi_gevent.py | |
| callable = app | |
| gevent = 500 | |
| master = true | |
| workers = 1 | |
| stats = 0.0.0.0:5001 |
| # git | |
| .git/ | |
| .gitignore | |
| # python | |
| htmlcov/ | |
| .tox/ | |
| .coverage | |
| # vim |