forked from orbit-oss/flask
Add a devcontainer configuration (#4969)
This commit is contained in:
parent
49498a323b
commit
182ce3dd15
3 changed files with 75 additions and 38 deletions
9
.devcontainer/on-create-command.sh
Executable file
9
.devcontainer/on-create-command.sh
Executable 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue