From 4df1f70a2cbec72116b8cdad320bdaa3ec374b8e Mon Sep 17 00:00:00 2001 From: "miles.adkins" Date: Thu, 29 Dec 2022 19:16:07 -0600 Subject: [PATCH] feat: Add template for Github Codespaces Signed-off-by: miles.adkins --- .devcontainer/devcontainer.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..b4da25737f --- /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" +}