mirror of
https://github.com/2234839/web-font.git
synced 2025-04-06 05:25:44 +08:00
整理目录结构
This commit is contained in:
parent
056ed20ac6
commit
99f3bde306
6
.github/workflows/deploy.yml
vendored
6
.github/workflows/deploy.yml
vendored
@ -20,6 +20,6 @@ jobs:
|
|||||||
- if: ${{ github.ref == 'refs/heads/pre' }}
|
- if: ${{ github.ref == 'refs/heads/pre' }}
|
||||||
env: ${{ secrets }}
|
env: ${{ secrets }}
|
||||||
run: npx malagu deploy -m pre
|
run: npx malagu deploy -m pre
|
||||||
- if: ${{ github.ref != 'refs/heads/master' && github.ref != 'refs/heads/pre' }}
|
# - if: ${{ github.ref != 'refs/heads/master' && github.ref != 'refs/heads/pre' }}
|
||||||
env: ${{ secrets }}
|
# env: ${{ secrets }}
|
||||||
run: npx malagu deploy -m test
|
# run: npx malagu deploy -m test
|
||||||
|
@ -32,6 +32,7 @@ $ yarn deploy:prod # 部署到线上环境
|
|||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
部署到阿里云 cn-qingdao
|
||||||
## 关于 Malagu Framework
|
## 关于 Malagu Framework
|
||||||
|
|
||||||
Malagu 是基于 TypeScript 的 Serverless First、组件化、平台无关的渐进式应用框架。
|
Malagu 是基于 TypeScript 的 Serverless First、组件化、平台无关的渐进式应用框架。
|
13
apps/backend/malagu.yml
Normal file
13
apps/backend/malagu.yml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
targets:
|
||||||
|
- backend
|
||||||
|
|
||||||
|
malagu:
|
||||||
|
# serve-static:
|
||||||
|
# root: .malagu/frontend/dist
|
||||||
|
|
||||||
|
faas-adapter:
|
||||||
|
customDomain:
|
||||||
|
name: webfontserverless.shenzilong.cn
|
||||||
|
service:
|
||||||
|
name: web_font # 默认值是 malagu
|
||||||
|
|
30
apps/backend/package.json
Normal file
30
apps/backend/package.json
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{
|
||||||
|
"name": "backend",
|
||||||
|
"keywords": [
|
||||||
|
"malagu-component"
|
||||||
|
],
|
||||||
|
"version": "0.0.0",
|
||||||
|
"license": "MIT",
|
||||||
|
"files": [
|
||||||
|
"lib",
|
||||||
|
"src"
|
||||||
|
],
|
||||||
|
"dependencies": {
|
||||||
|
"@malagu/fc-adapter": "latest",
|
||||||
|
"@malagu/mvc": "latest",
|
||||||
|
"@malagu/serve-static": "latest"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@malagu/cli": "latest",
|
||||||
|
"rimraf": "^2.6.3"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"clean": "rimraf lib dist .malagu",
|
||||||
|
"build": "malagu build",
|
||||||
|
"start": "malagu serve",
|
||||||
|
"deploy": "malagu deploy -m test",
|
||||||
|
"deploy:test": "malagu deploy -m test",
|
||||||
|
"deploy:pre": "malagu deploy -m pre",
|
||||||
|
"deploy:prod": "malagu deploy -m prod"
|
||||||
|
}
|
||||||
|
}
|
@ -1,3 +1,5 @@
|
|||||||
import './home-controller';
|
import './home-controller';
|
||||||
import { autoBind } from '@malagu/core';
|
import { autoBind } from '@malagu/core';
|
||||||
|
console.log("app start");
|
||||||
|
|
||||||
export default autoBind();
|
export default autoBind();
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 6.7 KiB |
@ -5,7 +5,7 @@ import vue from "@vitejs/plugin-vue";
|
|||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
plugins: [vue()],
|
plugins: [vue()],
|
||||||
build: {
|
build: {
|
||||||
outDir: "../../.malagu/frontend/dist/",
|
outDir: "../backend/.malagu/frontend/dist/",
|
||||||
emptyOutDir: true,
|
emptyOutDir: true,
|
||||||
},
|
},
|
||||||
});
|
});
|
@ -1,6 +0,0 @@
|
|||||||
targets:
|
|
||||||
- backend
|
|
||||||
|
|
||||||
malagu:
|
|
||||||
serve-static:
|
|
||||||
root: .malagu/frontend/dist
|
|
28
package.json
28
package.json
@ -1,36 +1,14 @@
|
|||||||
{
|
{
|
||||||
"private": true,
|
"private": true,
|
||||||
"name": "web-font-master",
|
"name": "web-font-master",
|
||||||
"keywords": [
|
|
||||||
"malagu-component"
|
|
||||||
],
|
|
||||||
"workspaces": [
|
"workspaces": [
|
||||||
"projects/*"
|
"apps/*"
|
||||||
],
|
],
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"files": [
|
|
||||||
"lib",
|
|
||||||
"src"
|
|
||||||
],
|
|
||||||
"dependencies": {
|
|
||||||
"@malagu/fc-adapter": "latest",
|
|
||||||
"@malagu/mvc": "latest",
|
|
||||||
"@malagu/serve-static": "latest"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"@malagu/cli": "latest",
|
|
||||||
"rimraf": "^2.6.3"
|
|
||||||
},
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf lib dist .malagu",
|
|
||||||
"build": "malagu build && yarn 前端build",
|
|
||||||
"start": "malagu serve",
|
|
||||||
"前端dev": "yarn workspace frontend dev",
|
"前端dev": "yarn workspace frontend dev",
|
||||||
"前端build": "yarn workspace frontend build",
|
"后端dev": "yarn workspace backend start",
|
||||||
"deploy": "malagu deploy -m test",
|
"deploy:prod": "yarn workspace frontend build && yarn workspace backend deploy:prod"
|
||||||
"deploy:test": "malagu deploy -m test",
|
|
||||||
"deploy:pre": "malagu deploy -m pre",
|
|
||||||
"deploy:prod": "malagu deploy -m prod"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user