Add a devcontainer configuration (#4969)

This commit is contained in:
emisargent 2023-04-13 10:03:49 -07:00 committed by GitHub
parent 49498a323b
commit 182ce3dd15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 75 additions and 38 deletions

View file

@ -0,0 +1,9 @@
#!/bin/bash
set -e
python3 -m venv .venv
. .venv/bin/activate
pip install -U pip setuptools wheel
pip install -r requirements/dev.txt
pip install -e .
pre-commit install --install-hooks