Skip to content

Commit

Permalink
Merge pull request #150 from danielperna84/devel
Browse files Browse the repository at this point in the history
0.3.5
  • Loading branch information
danielperna84 committed Mar 7, 2019
2 parents f3f2afb + da5b513 commit 801ac39
Show file tree
Hide file tree
Showing 13 changed files with 8,773 additions and 169 deletions.
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
.vscode/
.vscode/
*.pyc
# Setuptools distribution folder.
/dist/

# Python egg metadata, regenerated from source files by setuptools.
/*.egg-info
/*.egg
7 changes: 2 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,12 @@ LABEL maintainer="Daniel Perna <[email protected]>"
RUN apk update && \
apk upgrade && \
apk add --no-cache bash git openssh && \
pip install --no-cache-dir gitpython pyotp

WORKDIR /app
COPY configurator.py /app/
pip install --no-cache-dir hass-configurator

EXPOSE 3218
VOLUME /config

ENV HC_GIT true
ENV HC_BASEPATH /config

ENTRYPOINT ["python", "/app/configurator.py"]
ENTRYPOINT ["hass-configurator"]
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include hass_configurator/dev.html
116 changes: 10 additions & 106 deletions README.md

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Version 0.3.5 (2019-03-08)
- Added `ALLOWED_DOMAINS` option (Issue #143)
- Refactor for Pypi packaging (Issue #147)
- Include argparse for commandline parameters
- Update dependencies
- Code cleanup, lint (Issue #50)
- Added standalone mode
- Add Dockerfile

Version 0.3.4 (2019-01-27)
- Spelling fix @nelsonblaha
- Added env_var tag exception (Issue #138)
Expand Down
Loading

0 comments on commit 801ac39

Please sign in to comment.