Archived all completed OpenSpec changes, created .gitignore, implemented Gitea CI/CD, updated frontend with professional styling and clickable IPs, and added application documentation.

This commit is contained in:
2026-03-27 13:09:48 +01:00
parent cc59a91fea
commit 1873ae0e1f
25 changed files with 262 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
## ADDED Requirements
### Requirement: Display services in a card layout
The frontend SHALL display each discovered service as a card.
#### Scenario: Services are discovered
- **WHEN** the frontend receives a list of services from the backend
- **THEN** it SHALL render a card for each service.
### Requirement: Show service details on each card
Each service card SHALL display the service name, the exposed port, and the URL to access it.
#### Scenario: Displaying a service
- **WHEN** a service is displayed
- **THEN** the card SHALL show the service name, port, and URL.
### Requirement: Real-time updates
The frontend SHALL update in near real-time when services are started or stopped.
#### Scenario: A new service is started
- **WHEN** a new service is started on the host
- **THEN** a new card for that service SHALL appear in the frontend without requiring a page refresh.
#### Scenario: A service is stopped
- **WHEN** a service is stopped on the host
- **THEN** the corresponding card SHALL be removed from the frontend without requiring a page refresh.