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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.7.0] - 2025-08-11

### 🔧 Refactoring & Code Cleanup

- Improved code organization and modularity
- Enhanced readability and maintainability
- Removed deprecated APIs and unused code

## [2.6.0] - 2025-08-11

### 🚀 Service Architecture Enhancement & Runtime Modernization
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 🚀 NanoEdgeRT v2.5
# 🚀 NanoEdgeRT v2.7

[![CI](https://github.com/LemonHX/NanoEdgeRT/actions/workflows/ci.yml/badge.svg)](https://github.com/LemonHX/NanoEdgeRT/actions/workflows/ci.yml)
[![Deno](https://img.shields.io/badge/Deno-000000?style=for-the-badge&logo=deno&logoColor=white)](https://deno.land/)
Expand Down Expand Up @@ -73,7 +73,6 @@ graph TB
PublicRouter --> Health["/health"]
PublicRouter --> Status["/status"]
PublicRouter --> Docs["/docs"]
PublicRouter --> Static["/static"]

AdminRouter --> AdminAPI["/admin-api/v2/*"]
AdminRouter --> FunctionAdmin["/admin-api/v2/functions/*"]
Expand Down Expand Up @@ -407,13 +406,13 @@ data: [DONE]"Completed!"

### 🚀 Deploy Frontend Applications

NanoEdgeRT v2.5 introduces powerful frontend hosting capabilities, allowing you to deploy full-stack applications with custom server logic and static assets.
NanoEdgeRT v2.7 introduces powerful frontend hosting capabilities, allowing you to deploy full-stack applications with custom server logic and static assets.

#### How It Works

1. **Upload Server JS File** - JavaScript file that handles dynamic routing and server logic
2. **Upload Static Assets ZIP** - ZIP file containing your frontend assets (HTML, CSS, JS, images, etc.)
3. **Automatic Extraction** - Static files are automatically extracted to `./static/{serviceName}/`
3. **Automatic Extraction** - Static files are automatically extracted to `/api/v2/{serviceName}/dist/**`
4. **Service Creation** - A new service is created with read permissions to the static directory

#### Example Deployment
Expand Down
Loading