整理目录结构

This commit is contained in:
崮生 2021-03-11 23:14:11 +08:00
parent 056ed20ac6
commit 99f3bde306
22 changed files with 53 additions and 35 deletions

View File

@ -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

View File

@ -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
View 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
View 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"
}
}

View File

@ -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();

View File

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -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,
}, },
}); });

View File

@ -1,6 +0,0 @@
targets:
- backend
malagu:
serve-static:
root: .malagu/frontend/dist

View File

@ -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"
} }
} }