Skip to content

Commit 763f4a7

Browse files
authored
Merge pull request #277 from slowlydev/bugfix/backend-structure
bugfix/backend-structure
2 parents 954221d + eea6cd8 commit 763f4a7

48 files changed

Lines changed: 2278 additions & 445 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env.example

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
# the address of the simulator backend, found in crates/simulator
22
SIMULATOR_BACKEND_ADDRESS=localhost:8000
33

4-
# the address of the api backend, found in crates/api
5-
API_BACKEND_ADDRESS=localhost:4001
64

7-
# the address of the live backend, found in crates/live
8-
LIVE_BACKEND_ADDRESS=localhost:4000
5+
LIVE_ADDRESS=localhost:4000
6+
API_ADDRESS=localhost:4001
7+
ANALYTICS_ADDRESS=localhost:4002
98

109
# the origin of the frontend, found in dash/
1110
ORIGIN=http://localhost:3000
1211

13-
# by setting WS_URL you are telling the live backend to connect to this address
12+
# by setting WS_URL you are telling the live backend to connect to this address
1413
# (preferably from the simualtor) and not to the f1 address
1514
# WS_URL=ws://localhost:8000/ws
1615

.github/workflows/release.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,14 @@ jobs:
1919

2020
strategy:
2121
matrix:
22-
image: [f1-dash, f1-dash-api, f1-dash-live]
22+
image:
23+
[
24+
f1-dash,
25+
f1-dash-api,
26+
f1-dash-live,
27+
f1-dash-importer,
28+
f1-dash-analytics,
29+
]
2330

2431
permissions:
2532
contents: read

0 commit comments

Comments
 (0)