-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Enable ability to handle multiple gateways. Fixing aggregates and problems with grid status Improvements in accuracy and functionality Changing alerts to be consistent with the -3 suffix
- Loading branch information
Showing
9 changed files
with
1,047 additions
and
717 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
FROM python:3.10-alpine | ||
FROM python:3.13-alpine | ||
WORKDIR /app | ||
COPY requirements.txt /app/requirements.txt | ||
COPY ./proxy/requirements.txt /app/requirements.txt | ||
RUN pip3 install --upgrade pip | ||
RUN pip3 install -r requirements.txt | ||
COPY . . | ||
COPY pypowerwall /app/pypowerwall/pypowerwall/ | ||
COPY setup.py requirements.txt README.md /app/pypowerwall/ | ||
RUN pip3 install /app/pypowerwall | ||
COPY ./proxy . | ||
CMD ["python3", "server.py"] | ||
EXPOSE 8675 | ||
EXPOSE 8675 | ||
EXPOSE 8685 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,10 @@ | ||
pypowerwall==0.12.6 | ||
bs4==0.0.2 | ||
beautifulsoup4==4.12.3 | ||
requests==2.32.3 | ||
protobuf==5.29.3 | ||
teslapy==2.9.0 | ||
urllib3==2.3.0 | ||
setuptools==75.8.0 | ||
wheel | ||
urllib3 |
Oops, something went wrong.