Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
195f202
Feature #1: Start saving to Influx by duplicating the messages from M…
xjohnp00 Jul 31, 2024
ead489b
Feature #1: Add publish json message rpc
xjohnp00 Jul 31, 2024
152cd4d
Feature #1: Start adding time series and commands support
xjohnp00 Aug 10, 2024
338eaf6
Feature #1: Move internal into src to fix docker build
xjohnp00 Sep 13, 2024
bcb1965
Hotfix #1: Fix non-existing field being used
xjohnp00 Feb 15, 2025
7edeb3d
Hotfix: Fix postgres version on 16
xjohnp00 Feb 17, 2025
41d216a
Hotfix: Add influx info
xjohnp00 Feb 17, 2025
194da2f
WIP Hotfix #1: Start fixing time series
xjohnp00 Feb 27, 2025
65136dd
WIP Hotfix #1: Remove custom marshall / unmarshall for OutputData
xjohnp00 Feb 28, 2025
6efbd72
WIP Hotfix #1: Declare empty slice using a literal
xjohnp00 Feb 28, 2025
bd05510
WIP Hotfix #1: Start debugging rpc not being correctly replied to
xjohnp00 Feb 28, 2025
4adab8b
Feature #1: Fix incorrect time series store setup
xjohnp00 Feb 28, 2025
272c83d
Feature #1: Fix RPC
xjohnp00 Feb 28, 2025
95bab1d
Feature #1: Fix data conversion
xjohnp00 Feb 28, 2025
8f75742
Feature #1: Fix additional querying properties
xjohnp00 Mar 1, 2025
2ba4321
Feature #1: Use sharedUtils.Result[[]sharedModel.OutputData]
xjohnp00 Mar 1, 2025
81ba2d8
Feature #1: Fix error not being propagated into api
xjohnp00 Mar 1, 2025
be2541f
Feature #1: Add timeout to API, drop messages, that could not be sati…
xjohnp00 Mar 1, 2025
b38130c
Feature #1: Remove host from result
xjohnp00 Mar 6, 2025
653b285
Feature #1: Smaller fixes in time series store
xjohnp00 Mar 8, 2025
e58a916
Hotfix #1: Use shared GetEnvironmentVariableValue instead of duplicat…
xjohnp00 Mar 10, 2025
2b8657a
Hotfix #1: Use log instead of fmt
xjohnp00 Mar 10, 2025
2a5eed2
Feature #1: Use WaitForDSs
xjohnp00 Mar 15, 2025
5c496a3
Hotfix #25: Use float64 for timestamps that get saved into Influx for…
xjohnp00 Mar 15, 2025
25666ba
Chore: Add back grafana prometheus and mqtt-prometheus-exporter under…
xjohnp00 Mar 15, 2025
75a6b6e
Feature #1: Fix nil values breaking message ingestion into time serie…
xjohnp00 Mar 26, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions backend/backend-core/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ WORKDIR /app/backend-core
# Download all dependencies. Dependencies will be cached if the go.mod and go.sum files are not changed
RUN go mod tidy
RUN go mod download
# Run unit tests
RUN go test ./...
# Build the Go app
RUN CGO_ENABLED=0 GOOS=linux go build -o RIoT-backend-core src/main.go
# Run the executable
Expand Down
Loading