mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-18 20:23:27 +02:00
9 lines
154 B
Bash
Executable File
9 lines
154 B
Bash
Executable File
#!/bin/bash
|
|
# Set up ESPHome dev environment
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
pip3 install -r requirements.txt -r requirements_test.txt
|
|
pip3 install -e .
|