mirror of
https://github.com/esphome/esphome.git
synced 2025-04-01 06:10:00 +02:00
8 lines
154 B
Bash
Executable file
8 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 .
|