Skip to content

Commit

Permalink
refactor: Rename project from Racing Visualizer to Racing Databox and…
Browse files Browse the repository at this point in the history
… update related configurations

Signed-off-by: Marcel Hild <hild@b4mad.net>
  • Loading branch information
durandom committed Oct 31, 2024
1 parent cb34123 commit f9472e4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}",
"sourceMapPathOverrides": {
"webpack://racing-visualizer/*": "${webRoot}/*",
"webpack://racing-databox/*": "${webRoot}/*",
"webpack:///./~/*": "${webRoot}/node_modules/*",
"webpack:///./*": "${webRoot}/*",
"webpack:///src/*": "${webRoot}/src/*",
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN yarn install --frozen-lockfile
COPY . .

# Build the app
RUN yarn build
RUN yarn build:prod

# Production stage
FROM nginx:alpine
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Racing Visualizer
# Racing Databox

A web-based telemetry visualization tool for racing data, built with React and TypeScript.

Expand Down Expand Up @@ -89,7 +89,7 @@ The application works with telemetry data points that include:

The application provides two implementations of the telemetry service:

1. **MockTelemetryService**:
1. **MockTelemetryService**:
- Used for development and testing
- Provides simulated telemetry data
- Includes sample lap data for testing visualizations
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Racing Visualizer</title>
<title>Racing Databox</title>
</head>
<body>
<div id="root"></div>
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "racing-visualizer",
"name": "racing-databox",
"private": true,
"version": "0.0.0",
"scripts": {
Expand All @@ -9,8 +9,8 @@
"fetch-games": "ts-node src/scripts/fetchGames.ts",
"fetch-session": "ts-node src/scripts/fetchSession.ts",
"fetch-sessions": "ts-node src/scripts/fetchSessions.ts",
"docker:build": "docker build -t racing-visualizer .",
"docker:run": "docker run -p 8080:80 racing-visualizer",
"docker:build": "docker build -t racing-databox .",
"docker:run": "docker run -p 8080:80 racing-databox",
"build:prod": "NODE_ENV=production webpack --mode production",
"serve:prod": "yarn build:prod && serve -s dist -p 3000"
},
Expand Down

0 comments on commit f9472e4

Please sign in to comment.