mirror of
https://github.com/micahqcade/custom_vesync.git
synced 2025-02-04 22:35:08 +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
|