├── .github └── workflows │ ├── build_site.yml │ ├── test_python_environment_linux.yml │ ├── test_python_environment_macos.yml │ └── test_windows_installer.yml ├── .gitignore ├── .gitpod.yml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── docker ├── build_guide.md ├── install_guide.md └── release_checklist.md ├── docs ├── .nojekyll ├── assets │ ├── css │ │ ├── just-the-docs-dark.css │ │ ├── just-the-docs-default.css │ │ └── just-the-docs-light.css │ └── js │ │ ├── just-the-docs.js │ │ ├── search-data.json │ │ └── vendor │ │ └── lunr.min.js ├── contributing │ └── index.html ├── faq │ └── index.html ├── favicon.ico ├── gdsl.png ├── guides │ ├── docker_build │ │ └── index.html │ ├── docker_install │ │ └── index.html │ ├── index.html │ ├── vagrant_build │ │ └── index.html │ ├── virtualbox_build │ │ └── index.html │ └── virtualbox_install │ │ └── index.html ├── index.html ├── logo.png └── stacks │ ├── diagram.png │ ├── gds │ └── index.html │ ├── gds_dev │ └── index.html │ ├── gds_py │ └── index.html │ └── index.html ├── env ├── Dockerfile ├── dev │ ├── README.md │ ├── check_dev_stack.ipynb │ ├── install_texbuild.py │ ├── texBuild.py │ └── vimrc ├── gds_amd64.yml ├── gds_arm64.yml ├── installers │ ├── install_conda_env.sh │ ├── install_decktape.sh │ ├── install_gpq.sh │ ├── install_jekyll.sh │ ├── install_jupyter_dev.sh │ ├── install_latex_tools.sh │ ├── install_quarto.sh │ ├── install_r_extra.sh │ ├── install_tippecanoe.sh │ └── install_vim.sh ├── py │ ├── README.md │ ├── check_py_stack.ipynb │ ├── gds_py_explicit_macos-arm.txt │ ├── gds_py_explicit_macos-latest.txt │ ├── gds_py_explicit_ubuntu-latest.txt │ ├── gds_py_explicit_windows-latest.txt │ ├── stack_py_amd64.md │ ├── stack_py_amd64.txt │ ├── stack_py_arm64.md │ ├── stack_py_arm64.txt │ └── test_py_stack.ipynb └── r │ ├── README.md │ ├── check_r_stack.ipynb │ ├── install_R.sh │ ├── install_R_gds.sh │ ├── install_R_stack.sh │ ├── setup_py-r.sh │ ├── stack_r_amd64.md │ ├── stack_r_amd64.txt │ ├── stack_r_arm64.md │ ├── stack_r_arm64.txt │ └── test_courses.ipynb ├── frontend_code ├── Dockerfile └── compose.yml ├── utils └── size_explorer.ipynb ├── virtualbox ├── README.md ├── README_docker-machine.md ├── README_vagrant.md ├── Vagrantfile ├── cloud-config.yml └── virtualbox_user_setup.md └── website ├── _config.docker.yml ├── _config.yml ├── contributing.md ├── faq.md ├── favicon.ico ├── gdsl.png ├── guides.md ├── guides ├── docker_build.md ├── docker_install.md ├── vagrant_build.md ├── virtualbox_build.md └── virtualbox_install.md ├── index.md ├── logo.png ├── stacks.md └── stacks ├── diagram.png ├── gds.md ├── gds_dev.md └── gds_py.md /.github/workflows/build_site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/.github/workflows/build_site.yml -------------------------------------------------------------------------------- /.github/workflows/test_python_environment_linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/.github/workflows/test_python_environment_linux.yml -------------------------------------------------------------------------------- /.github/workflows/test_python_environment_macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/.github/workflows/test_python_environment_macos.yml -------------------------------------------------------------------------------- /.github/workflows/test_windows_installer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/.github/workflows/test_windows_installer.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- 1 | image: darribas/gds_dev:7.0 -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM darribas/gds:11.0gc 2 | RUN rm -rf ./work 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/README.md -------------------------------------------------------------------------------- /docker/build_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docker/build_guide.md -------------------------------------------------------------------------------- /docker/install_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docker/install_guide.md -------------------------------------------------------------------------------- /docker/release_checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docker/release_checklist.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/css/just-the-docs-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/assets/css/just-the-docs-dark.css -------------------------------------------------------------------------------- /docs/assets/css/just-the-docs-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/assets/css/just-the-docs-default.css -------------------------------------------------------------------------------- /docs/assets/css/just-the-docs-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/assets/css/just-the-docs-light.css -------------------------------------------------------------------------------- /docs/assets/js/just-the-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/assets/js/just-the-docs.js -------------------------------------------------------------------------------- /docs/assets/js/search-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/assets/js/search-data.json -------------------------------------------------------------------------------- /docs/assets/js/vendor/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/assets/js/vendor/lunr.min.js -------------------------------------------------------------------------------- /docs/contributing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/contributing/index.html -------------------------------------------------------------------------------- /docs/faq/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/faq/index.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/gdsl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/gdsl.png -------------------------------------------------------------------------------- /docs/guides/docker_build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/guides/docker_build/index.html -------------------------------------------------------------------------------- /docs/guides/docker_install/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/guides/docker_install/index.html -------------------------------------------------------------------------------- /docs/guides/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/guides/index.html -------------------------------------------------------------------------------- /docs/guides/vagrant_build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/guides/vagrant_build/index.html -------------------------------------------------------------------------------- /docs/guides/virtualbox_build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/guides/virtualbox_build/index.html -------------------------------------------------------------------------------- /docs/guides/virtualbox_install/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/guides/virtualbox_install/index.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/stacks/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/stacks/diagram.png -------------------------------------------------------------------------------- /docs/stacks/gds/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/stacks/gds/index.html -------------------------------------------------------------------------------- /docs/stacks/gds_dev/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/stacks/gds_dev/index.html -------------------------------------------------------------------------------- /docs/stacks/gds_py/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/stacks/gds_py/index.html -------------------------------------------------------------------------------- /docs/stacks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/docs/stacks/index.html -------------------------------------------------------------------------------- /env/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/Dockerfile -------------------------------------------------------------------------------- /env/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/dev/README.md -------------------------------------------------------------------------------- /env/dev/check_dev_stack.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/dev/check_dev_stack.ipynb -------------------------------------------------------------------------------- /env/dev/install_texbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/dev/install_texbuild.py -------------------------------------------------------------------------------- /env/dev/texBuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/dev/texBuild.py -------------------------------------------------------------------------------- /env/dev/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/dev/vimrc -------------------------------------------------------------------------------- /env/gds_amd64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/gds_amd64.yml -------------------------------------------------------------------------------- /env/gds_arm64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/gds_arm64.yml -------------------------------------------------------------------------------- /env/installers/install_conda_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/installers/install_conda_env.sh -------------------------------------------------------------------------------- /env/installers/install_decktape.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/installers/install_decktape.sh -------------------------------------------------------------------------------- /env/installers/install_gpq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/installers/install_gpq.sh -------------------------------------------------------------------------------- /env/installers/install_jekyll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/installers/install_jekyll.sh -------------------------------------------------------------------------------- /env/installers/install_jupyter_dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/installers/install_jupyter_dev.sh -------------------------------------------------------------------------------- /env/installers/install_latex_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/installers/install_latex_tools.sh -------------------------------------------------------------------------------- /env/installers/install_quarto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/installers/install_quarto.sh -------------------------------------------------------------------------------- /env/installers/install_r_extra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/installers/install_r_extra.sh -------------------------------------------------------------------------------- /env/installers/install_tippecanoe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/installers/install_tippecanoe.sh -------------------------------------------------------------------------------- /env/installers/install_vim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/installers/install_vim.sh -------------------------------------------------------------------------------- /env/py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/py/README.md -------------------------------------------------------------------------------- /env/py/check_py_stack.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/py/check_py_stack.ipynb -------------------------------------------------------------------------------- /env/py/gds_py_explicit_macos-arm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/py/gds_py_explicit_macos-arm.txt -------------------------------------------------------------------------------- /env/py/gds_py_explicit_macos-latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/py/gds_py_explicit_macos-latest.txt -------------------------------------------------------------------------------- /env/py/gds_py_explicit_ubuntu-latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/py/gds_py_explicit_ubuntu-latest.txt -------------------------------------------------------------------------------- /env/py/gds_py_explicit_windows-latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/py/gds_py_explicit_windows-latest.txt -------------------------------------------------------------------------------- /env/py/stack_py_amd64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/py/stack_py_amd64.md -------------------------------------------------------------------------------- /env/py/stack_py_amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/py/stack_py_amd64.txt -------------------------------------------------------------------------------- /env/py/stack_py_arm64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/py/stack_py_arm64.md -------------------------------------------------------------------------------- /env/py/stack_py_arm64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/py/stack_py_arm64.txt -------------------------------------------------------------------------------- /env/py/test_py_stack.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/py/test_py_stack.ipynb -------------------------------------------------------------------------------- /env/r/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/r/README.md -------------------------------------------------------------------------------- /env/r/check_r_stack.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/r/check_r_stack.ipynb -------------------------------------------------------------------------------- /env/r/install_R.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/r/install_R.sh -------------------------------------------------------------------------------- /env/r/install_R_gds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/r/install_R_gds.sh -------------------------------------------------------------------------------- /env/r/install_R_stack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/r/install_R_stack.sh -------------------------------------------------------------------------------- /env/r/setup_py-r.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/r/setup_py-r.sh -------------------------------------------------------------------------------- /env/r/stack_r_amd64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/r/stack_r_amd64.md -------------------------------------------------------------------------------- /env/r/stack_r_amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/r/stack_r_amd64.txt -------------------------------------------------------------------------------- /env/r/stack_r_arm64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/r/stack_r_arm64.md -------------------------------------------------------------------------------- /env/r/stack_r_arm64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/r/stack_r_arm64.txt -------------------------------------------------------------------------------- /env/r/test_courses.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/env/r/test_courses.ipynb -------------------------------------------------------------------------------- /frontend_code/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/frontend_code/Dockerfile -------------------------------------------------------------------------------- /frontend_code/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/frontend_code/compose.yml -------------------------------------------------------------------------------- /utils/size_explorer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/utils/size_explorer.ipynb -------------------------------------------------------------------------------- /virtualbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/virtualbox/README.md -------------------------------------------------------------------------------- /virtualbox/README_docker-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/virtualbox/README_docker-machine.md -------------------------------------------------------------------------------- /virtualbox/README_vagrant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/virtualbox/README_vagrant.md -------------------------------------------------------------------------------- /virtualbox/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/virtualbox/Vagrantfile -------------------------------------------------------------------------------- /virtualbox/cloud-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/virtualbox/cloud-config.yml -------------------------------------------------------------------------------- /virtualbox/virtualbox_user_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/virtualbox/virtualbox_user_setup.md -------------------------------------------------------------------------------- /website/_config.docker.yml: -------------------------------------------------------------------------------- 1 | url: "http://192.168.1.93:4000" 2 | -------------------------------------------------------------------------------- /website/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/website/_config.yml -------------------------------------------------------------------------------- /website/contributing.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Contributing 4 | nav_order: d 5 | --- 6 | 7 | {% include CONTRIBUTING.md %} 8 | -------------------------------------------------------------------------------- /website/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/website/faq.md -------------------------------------------------------------------------------- /website/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/website/favicon.ico -------------------------------------------------------------------------------- /website/gdsl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/website/gdsl.png -------------------------------------------------------------------------------- /website/guides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/website/guides.md -------------------------------------------------------------------------------- /website/guides/docker_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/website/guides/docker_build.md -------------------------------------------------------------------------------- /website/guides/docker_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/website/guides/docker_install.md -------------------------------------------------------------------------------- /website/guides/vagrant_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/website/guides/vagrant_build.md -------------------------------------------------------------------------------- /website/guides/virtualbox_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/website/guides/virtualbox_build.md -------------------------------------------------------------------------------- /website/guides/virtualbox_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/website/guides/virtualbox_install.md -------------------------------------------------------------------------------- /website/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Home 4 | nav_order: a 5 | permalink: / 6 | --- 7 | 8 | {% include README.md %} 9 | -------------------------------------------------------------------------------- /website/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/website/logo.png -------------------------------------------------------------------------------- /website/stacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/website/stacks.md -------------------------------------------------------------------------------- /website/stacks/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/website/stacks/diagram.png -------------------------------------------------------------------------------- /website/stacks/gds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/website/stacks/gds.md -------------------------------------------------------------------------------- /website/stacks/gds_dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/website/stacks/gds_dev.md -------------------------------------------------------------------------------- /website/stacks/gds_py.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darribas/gds_env/HEAD/website/stacks/gds_py.md --------------------------------------------------------------------------------