Adds application
This commit is contained in:
commit
b2dc69142a
12 changed files with 1683 additions and 0 deletions
17
build/build-cli.mjs
Normal file
17
build/build-cli.mjs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import * as fs from "node:fs";
|
||||
|
||||
if (!process.env.BUILD_TARGET) {
|
||||
process.env.BUILD_TARGET = "LOCAL";
|
||||
}
|
||||
|
||||
if (!process.env.BUILD_LABEL) {
|
||||
process.env.BUILD_LABEL = "development";
|
||||
}
|
||||
|
||||
import context from './context.mjs';
|
||||
|
||||
(async () => {
|
||||
await context.rebuild();
|
||||
await context.dispose();
|
||||
})()
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue