Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
11 changes: 0 additions & 11 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,17 +111,6 @@ services:
timeout: 10s
retries: 5

# Documentation Site
docs:
build: ./docs
container_name: docs
hostname: docs
networks:
- fiware_default
ports:
- "3000:80"
restart: unless-stopped

# SUMO Simulation with GUI (choose scenario via environment variable)
sumo-simulation:
build:
Expand Down
138 changes: 0 additions & 138 deletions src/backend/MIGRATION_SUMMARY.md

This file was deleted.

5 changes: 0 additions & 5 deletions src/backend/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
// Copyright (c) 2025 Green Wave Team
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

[tool.black]
line-length = 88
target-version = ['py39']
Expand Down
5 changes: 0 additions & 5 deletions src/backend/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
// Copyright (c) 2025 Green Wave Team
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

fastapi==0.104.1
uvicorn[standard]==0.24.0
httpx==0.25.1
Expand Down
6 changes: 0 additions & 6 deletions src/backend/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
// Copyright (c) 2025 Green Wave Team
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT


fastapi==0.104.1
uvicorn[standard]==0.24.0
httpx==0.25.1
Expand Down
1 change: 1 addition & 0 deletions src/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ ENV VITE_WS_URL=$VITE_WS_URL
ENV VITE_ORION_URL=$VITE_ORION_URL

# Build application
RUN npm install
RUN npm run build

# Production stage
Expand Down
5 changes: 0 additions & 5 deletions src/frontend/nginx.conf
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
// Copyright (c) 2025 Green Wave Team
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

server {
listen 80;
server_name localhost;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ export const DeviceWizard: React.FC<DeviceWizardProps> = ({
</label>
<input
type="text"
value={deviceData.httpConfig?.ipAddress || ""}
value={deviceData.httpConfig?.ipAddress}
onChange={(e) =>
setDeviceData({
...deviceData,
Expand All @@ -549,7 +549,6 @@ export const DeviceWizard: React.FC<DeviceWizardProps> = ({
setDeviceData({
...deviceData,
httpConfig: {
ipAddress: "", // Default ipAddress if missing
...deviceData.httpConfig,
rtspUrl: e.target.value,
ipAddress: deviceData.httpConfig?.ipAddress || "",
Expand Down
5 changes: 0 additions & 5 deletions src/frontend/tsconfig.app.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
// Copyright (c) 2025 Green Wave Team
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
Expand Down
5 changes: 0 additions & 5 deletions src/frontend/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
// Copyright (c) 2025 Green Wave Team
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

{
"files": [],
"references": [
Expand Down
5 changes: 0 additions & 5 deletions src/frontend/tsconfig.node.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
// Copyright (c) 2025 Green Wave Team
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
Expand Down
Loading