-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor dmno server/client, use uws, mtls
- Loading branch information
1 parent
15de589
commit 1057bd1
Showing
54 changed files
with
1,724 additions
and
1,375 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
"@dmno/astro-integration": patch | ||
"@dmno/remix-integration": patch | ||
"@dmno/vite-integration": patch | ||
"@dmno/configraph": patch | ||
"dmno": patch | ||
--- | ||
|
||
refactor dmno server, perf improvements |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { DmnoBaseTypes, defineDmnoService } from 'dmno'; | ||
|
||
export default defineDmnoService({ | ||
settings: { | ||
dynamicConfig: 'default_static' | ||
}, | ||
schema: { | ||
PUBLIC_STATIC: { value: 'public-static' }, | ||
SECRET_STATIC: { value: 'secret-static', sensitive: true }, | ||
PUBLIC_DYNAMIC: { value: 'public-dynamic', dynamic: true }, | ||
SECRET_DYNAMIC: { value: 'secret-dynamic', dynamic: true, sensitive: true }, | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"extends": "dmno/tsconfigs/dmno-folder", | ||
"include": [ | ||
"./**/*.mts", | ||
"./.typegen/global.d.ts" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Vite App</title> | ||
</head> | ||
|
||
<body> | ||
<div id="app"></div> | ||
<script type="module" src="/src/main.ts"></script> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"name": "vite-dynamic", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"type": "module", | ||
"scripts": { | ||
"build": "vite build", | ||
"boot": "dmno run -- node dist/main.js", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"keywords": [ ], | ||
"author": "", | ||
"license": "ISC", | ||
"dependencies": { | ||
"@dmno/vite-integration": "link:../../../packages/integrations/vite", | ||
"dmno": "link:../../../packages/core", | ||
"vite": "^5.4.10", | ||
"vite-node": "^2.1.4" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^20.12.7" | ||
} | ||
} |
Oops, something went wrong.