├── .dockerignore ├── .github └── workflows │ ├── test-linux.yml │ ├── test-macos.yml │ └── test-windows.yml ├── AUTHORS ├── Dockerfile ├── LICENSE ├── README.md ├── install.ps1 ├── install.sh ├── proxy ├── .dockerignore ├── Dockerfile └── nginx.conf ├── test.sh └── test ├── .gitignore ├── async.py ├── opencv ├── opencv.py └── requirements.txt ├── package-lock.json ├── package.js ├── package.json ├── requirements.py ├── requirements.txt ├── script.js ├── script.py └── spacex ├── launchpads.py ├── requirements.txt └── spacex.js /.dockerignore: -------------------------------------------------------------------------------- 1 | ** 2 | !test 3 | !proxy/nginx.conf 4 | !install.sh 5 | -------------------------------------------------------------------------------- /.github/workflows/test-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metacall/install/HEAD/.github/workflows/test-linux.yml -------------------------------------------------------------------------------- /.github/workflows/test-macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metacall/install/HEAD/.github/workflows/test-macos.yml -------------------------------------------------------------------------------- /.github/workflows/test-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metacall/install/HEAD/.github/workflows/test-windows.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | 2 | Vicente Eduardo Ferrer Garcia 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metacall/install/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metacall/install/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metacall/install/HEAD/README.md -------------------------------------------------------------------------------- /install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metacall/install/HEAD/install.ps1 -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metacall/install/HEAD/install.sh -------------------------------------------------------------------------------- /proxy/.dockerignore: -------------------------------------------------------------------------------- 1 | ** 2 | !nginx.conf 3 | -------------------------------------------------------------------------------- /proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metacall/install/HEAD/proxy/Dockerfile -------------------------------------------------------------------------------- /proxy/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metacall/install/HEAD/proxy/nginx.conf -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metacall/install/HEAD/test.sh -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | node_modules 3 | -------------------------------------------------------------------------------- /test/async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metacall/install/HEAD/test/async.py -------------------------------------------------------------------------------- /test/opencv/opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metacall/install/HEAD/test/opencv/opencv.py -------------------------------------------------------------------------------- /test/opencv/requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-contrib-python==3.4.11.45 2 | -------------------------------------------------------------------------------- /test/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metacall/install/HEAD/test/package-lock.json -------------------------------------------------------------------------------- /test/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metacall/install/HEAD/test/package.js -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metacall/install/HEAD/test/package.json -------------------------------------------------------------------------------- /test/requirements.py: -------------------------------------------------------------------------------- 1 | import certifi 2 | print('123456') 3 | -------------------------------------------------------------------------------- /test/requirements.txt: -------------------------------------------------------------------------------- 1 | certifi==2024.7.4 2 | -------------------------------------------------------------------------------- /test/script.js: -------------------------------------------------------------------------------- 1 | console.log('123456'); 2 | -------------------------------------------------------------------------------- /test/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metacall/install/HEAD/test/script.py -------------------------------------------------------------------------------- /test/spacex/launchpads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metacall/install/HEAD/test/spacex/launchpads.py -------------------------------------------------------------------------------- /test/spacex/requirements.txt: -------------------------------------------------------------------------------- 1 | metacall==0.5.0 2 | -------------------------------------------------------------------------------- /test/spacex/spacex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metacall/install/HEAD/test/spacex/spacex.js --------------------------------------------------------------------------------