Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
bb2d84c
feat: add TeamLogo component to page standings, add Teams logo img
Alexkill536ITA May 8, 2025
59c080c
fix: Change size teams logo to 400x400pxel
Alexkill536ITA May 8, 2025
eb6ebe8
feat: Change TeamLogo use PNG file to SVG file
Alexkill536ITA May 8, 2025
079168b
Fix: Change color racing bulls use offical colored logos
Alexkill536ITA May 8, 2025
39b340b
feat: adjustment space logo
Alexkill536ITA May 9, 2025
6760792
fix: map avoid maptiler
slowlydev May 26, 2025
42aa722
fix: flags CLS
slowlydev May 26, 2025
146a97a
fix(map): remove unused import
slowlydev May 26, 2025
3530f88
fix: driver fastest lap not purple anymore
slowlydev May 26, 2025
954221d
fix: styling and imporve imports
slowlydev May 27, 2025
93dc3c1
refactor: live, api and client services restructure
slowlydev May 27, 2025
eea6cd8
feat: implement first version of importer and analytics service
slowlydev May 27, 2025
763f4a7
Merge pull request #277 from slowlydev/bugfix/backend-structure
slowlydev May 27, 2025
14162c6
fix(timescale): add sqlx cache
slowlydev May 27, 2025
fe51fa7
refactor: unify address envs
slowlydev May 27, 2025
5f0c81f
Feat: Remove TeamLogo and use only Image
Alexkill536ITA May 28, 2025
7f79202
Fix: Remove space to logo teams name
Alexkill536ITA May 28, 2025
0352dc7
Merge pull request #261 from Alexkill536ITA/feature/add-icons-for-cha…
slowlydev May 28, 2025
66bb8c9
feat: oled full black background setting toggle
Constrat May 31, 2025
5b6c2e7
Merge branch 'main' of github.com:slowlydev/f1-dash into develop
slowlydev May 31, 2025
82a3df1
Merge branch 'develop' into feat/oled
slowlydev May 31, 2025
cce270b
chore: update deps
slowlydev May 31, 2025
ba30f70
fix: docker build by unifying cargo deps
slowlydev May 31, 2025
f83bfbd
fix: last minisector not purple when overall fastest
slowlydev May 31, 2025
50c110f
perf: remove unnecessary div
Constrat May 31, 2025
0946e63
refactor(oled): small cleanup
slowlydev Jun 1, 2025
5ffb09a
Merge pull request #279 from Constrat/feat/oled
slowlydev Jun 1, 2025
9e8b921
chore: bump version
slowlydev Jun 1, 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
19 changes: 9 additions & 10 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
# the address of the simulator backend, found in crates/simulator
SIMULATOR_BACKEND_ADDRESS=localhost:8000
LIVE_ADDRESS=localhost:4000
API_ADDRESS=localhost:4001
ANALYTICS_ADDRESS=localhost:4002

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

# the address of the live backend, found in crates/live
LIVE_BACKEND_ADDRESS=localhost:4000

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

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

SIMULATOR_ADDRESS=localhost:8000

# sets the rust log level, used by all packages (live, api, simulator, saver)
RUST_LOG="live=debug,info"

# timescale database used by importer and analytics
DATABASE_URL=
9 changes: 8 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,14 @@ jobs:

strategy:
matrix:
image: [f1-dash, f1-dash-api, f1-dash-live]
image:
[
f1-dash,
f1-dash-api,
f1-dash-live,
f1-dash-importer,
f1-dash-analytics,
]

permissions:
contents: read
Expand Down
Loading
Loading