diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000000..b4da25737f9 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,16 @@ +{ + "name": "feast-devcontainer", + "image": "mcr.microsoft.com/devcontainers/base:ubuntu", + "features": { + "ghcr.io/devcontainers/features/docker-in-docker:2": { + "version": "latest" + }, + "ghcr.io/devcontainers/features/python:1": { + "version": "3.9" + }, + "ghcr.io/meaningful-ooo/devcontainer-features/homebrew:2": { + "version": "latest" + } + }, + "postCreateCommand": "brew install mysql && pip install -e '.[dev]' && make compile-protos-python" +}