add new endpoints for app v2 #116

Merged
edenhaus merged 17 commits from ecovacs-home into master 2021-06-05 15:06:19 +02:00
2 changed files with 5 additions and 26 deletions
Showing only changes of commit 4394e58cd3 - Show all commits

View file

@ -1,28 +1,5 @@
# Logs
logs
# Tests
tests
# Examples
examples
# Docs
docs
# Certs
certs
.coverage
# Markdown
*.md
# Other
*.yml
# Github
.github
# Python virtual environment
venv

View file

@ -27,8 +27,10 @@ COPY requirements.txt /requirements.txt
# install required python packages
RUN pip3 install -r requirements.txt
COPY . /bumper
WORKDIR /bumper
# Copy only required folders instead of all
COPY create_certs/ create_certs/
COPY bumper/ bumper/
ENTRYPOINT ["python3", "-m", "bumper"]