diff --git a/Dockerfile b/Dockerfile index 5de92d7..47f94d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,6 +21,6 @@ WORKDIR /app COPY --from=1 /app/app . COPY ./templates /app/templates -RUN touch config.json +RUN touch config.json database.db CMD ["./app"] \ No newline at end of file diff --git a/src/ecodash/api.go b/src/ecodash/api.go index e517a1c..923a0f5 100644 --- a/src/ecodash/api.go +++ b/src/ecodash/api.go @@ -27,7 +27,8 @@ func dayStart(t time.Time) time.Time { var errNon200 = errors.New("got a non-200 status code. Check the correctness of sensors IDs") func (config *Config) queryHistory(entityID string, startTime, endTime time.Time) (HistoryResult, error) { - ctx, cancel := context.WithTimeout(context.Background(), 1*time.Minute) + ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second) + defer cancel() req, err := http.NewRequestWithContext( ctx, http.MethodGet, @@ -40,7 +41,6 @@ func (config *Config) queryHistory(entityID string, startTime, endTime time.Time ), http.NoBody, ) - cancel() if err != nil { return HistoryResult{}, err } diff --git a/templates/default/admin.html b/templates/default/admin.html index 9d6034a..14654a2 100644 --- a/templates/default/admin.html +++ b/templates/default/admin.html @@ -19,7 +19,7 @@

HomeAssistant

- + Installation date

Sensors