mirror of
https://github.com/micahqcade/custom_vesync.git
synced 2025-02-11 09:39:00 +01:00
30 lines
618 B
YAML
30 lines
618 B
YAML
|
image:
|
||
|
file: .gitpod.Dockerfile
|
||
|
tasks:
|
||
|
- name: Requirements
|
||
|
init: |
|
||
|
python -m virtualenv .venv
|
||
|
. .venv/bin/activate
|
||
|
pip3 install pre-commit
|
||
|
pre-commit install
|
||
|
pre-commit run --all-files
|
||
|
pip3 install -r requirements_dev.txt
|
||
|
ports:
|
||
|
- port: 9123
|
||
|
onOpen: notify
|
||
|
github:
|
||
|
prebuilds:
|
||
|
master: true
|
||
|
branches: false
|
||
|
pullRequests: true
|
||
|
pullRequestsFromForks: true
|
||
|
addCheck: true
|
||
|
addComment: false
|
||
|
addBadge: false
|
||
|
vscode:
|
||
|
extensions:
|
||
|
- esbenp.prettier-vscode
|
||
|
- github.vscode-pull-request-github
|
||
|
- eamodio.gitlens
|
||
|
- ms-python.python
|