generated from Projetos/RaspberryPi_app
17 lines
410 B
Bash
17 lines
410 B
Bash
# .env.example - Template for environment configuration
|
|
# Copy this to .env and update with your values
|
|
|
|
# Target device IP address
|
|
TARGET_IP=192.168.1.100
|
|
|
|
# Target device username
|
|
TARGET_USER=user
|
|
|
|
# Directory on target where executable will be stored
|
|
TARGET_DIR=/home/user
|
|
|
|
# Path to your buildroot directory
|
|
BUILDROOT_PATH=/home/user/rpi1/buildroot
|
|
|
|
# Name of your project executable
|
|
PROJECT_NAME=hello-rpi |