feat(base): 优化项目基础开发环境
This commit is contained in:
parent
5b1a1e25ef
commit
32edd5fb3c
4
.env
4
.env
@ -4,6 +4,8 @@
|
|||||||
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB.
|
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB.
|
||||||
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings
|
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings
|
||||||
|
|
||||||
|
# prod envrionment needs to be set to production
|
||||||
NODE_ENV=dev
|
NODE_ENV=dev
|
||||||
|
|
||||||
DATABASE_URL="mysql://root:rootpassword@localhost:3306/testdb"
|
|
||||||
|
# DATABASE_URL="mysql://root:rootpassword@localhost:3306/testdb"
|
@ -1,5 +1,8 @@
|
|||||||
name: CI Monitor CI/CD
|
name: Egg Gitlab CR CI/CD
|
||||||
on: [push]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-image:
|
build-image:
|
||||||
@ -7,43 +10,29 @@ jobs:
|
|||||||
container: catthehacker/ubuntu:act-latest
|
container: catthehacker/ubuntu:act-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v2
|
uses: docker/setup-qemu-action@v3
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v2
|
uses: docker/setup-buildx-action@v3
|
||||||
- name: Login to Docker Hub
|
- name: Login to Docker Hub
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: git.yingbo.im:333
|
registry: micr.cloud.mioffice.cn
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.MI_DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.MI_DOCKER_PASSWORD }}
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
uses: docker/build-push-action@v4
|
uses: docker/build-push-action@v6
|
||||||
with:
|
with:
|
||||||
|
file: ./docker/deploy/Dockerfile
|
||||||
push: true
|
push: true
|
||||||
tags: git.yingbo.im:333/zhaoyingbo/ci_monitor:${{ github.sha }}
|
tags: ${{ env.DOCKER_IMAGE }}:${{ github.sha }}
|
||||||
|
|
||||||
deploy:
|
refresh-image:
|
||||||
needs: build-image
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: catthehacker/ubuntu:act-latest
|
container: catthehacker/ubuntu:act-latest
|
||||||
steps:
|
steps:
|
||||||
# 检出代码
|
- name: Login to the server and refresh the image
|
||||||
- name: Check out repository code
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
# 使用scp命令将docker-compose.yml文件上传到服务器
|
|
||||||
- name: Upload docker-compose.yml to server
|
|
||||||
uses: appleboy/scp-action@master
|
|
||||||
with:
|
|
||||||
host: ${{ secrets.SERVER_HOST }}
|
|
||||||
username: ${{ secrets.SERVER_USERNAME }}
|
|
||||||
key: ${{ secrets.SERVER_KEY }}
|
|
||||||
port: ${{ secrets.SERVER_PORT }}
|
|
||||||
source: docker-compose.yml
|
|
||||||
target: /home/${{ secrets.SERVER_USERNAME }}/docker/ci_monitor
|
|
||||||
# 登录服务器,执行docker-compose命令
|
|
||||||
- name: Login to the server and execute docker-compose command
|
|
||||||
uses: appleboy/ssh-action@master
|
uses: appleboy/ssh-action@master
|
||||||
with:
|
with:
|
||||||
host: ${{ secrets.SERVER_HOST }}
|
host: ${{ secrets.SERVER_HOST }}
|
||||||
@ -51,7 +40,18 @@ jobs:
|
|||||||
key: ${{ secrets.SERVER_KEY }}
|
key: ${{ secrets.SERVER_KEY }}
|
||||||
port: ${{ secrets.SERVER_PORT }}
|
port: ${{ secrets.SERVER_PORT }}
|
||||||
script: |
|
script: |
|
||||||
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} git.yingbo.im:333
|
docker pull ${{ env.DOCKER_IMAGE }}:${{ github.sha }}
|
||||||
cd /home/${{ secrets.SERVER_USERNAME }}/docker/ci_monitor
|
docker push ${{ env.DOCKER_IMAGE }}:${{ github.sha }}
|
||||||
sed -i "s/sha/${{ github.sha }}/g" docker-compose.yml
|
docker rmi $(docker images | grep "${{ env.DOCKER_IMAGE }}" | grep -v "${{ github.sha }}" | awk '{print $3}')
|
||||||
docker compose up -d --force-recreate --no-deps ci_monitor
|
|
||||||
|
fast-deploy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container: cr.d.xiaomi.net/bigdata-fe/matrix-cli
|
||||||
|
steps:
|
||||||
|
- name: Set matrix-cli config
|
||||||
|
run: matrix-cli config set --access-key ${{ secrets.MATRIX_AK }} --secret-key ${{ secrets.MATRIX_SK }}
|
||||||
|
- name: Use matrix-cli to deploy
|
||||||
|
run: matrix-cli deploy --project 462609 --deploy-space egg-gitlab-cr-prev --reason "${{ github.event.head_commit.message }}" --deploy-percentage 1 --tag ${{ github.sha }}
|
||||||
|
|
||||||
|
env:
|
||||||
|
DOCKER_IMAGE: micr.cloud.mioffice.cn/egg/replace_me
|
||||||
|
38
.gitlab-ci.yml
Normal file
38
.gitlab-ci.yml
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
variables:
|
||||||
|
REGISTRY: micr.cloud.mioffice.cn
|
||||||
|
IMAGE_NAME: micr.cloud.mioffice.cn/egg/replace_me
|
||||||
|
MATRIX_PROJECT: 462609
|
||||||
|
MATRIX_SPACE: egg-gitlab-cr-prev
|
||||||
|
MATRIX_AK: CAKBCYGR0BI2BGMVUF8
|
||||||
|
|
||||||
|
stages:
|
||||||
|
- build
|
||||||
|
- deploy
|
||||||
|
|
||||||
|
default:
|
||||||
|
tags:
|
||||||
|
- fe-bj
|
||||||
|
|
||||||
|
build:
|
||||||
|
stage: build
|
||||||
|
only:
|
||||||
|
- master
|
||||||
|
image: docker:latest
|
||||||
|
services:
|
||||||
|
- docker:dind
|
||||||
|
script:
|
||||||
|
- cp $ENV .env
|
||||||
|
- docker login -u $MATRIX_AK -p $MATRIX_SK $REGISTRY
|
||||||
|
- docker build -t $IMAGE_NAME:$CI_COMMIT_SHA -f ./docker/deploy/Dockerfile .
|
||||||
|
- docker push $IMAGE_NAME:$CI_COMMIT_SHA
|
||||||
|
- docker logout $REGISTRY
|
||||||
|
- docker rmi $IMAGE_NAME:$CI_COMMIT_SHA
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
stage: deploy
|
||||||
|
only:
|
||||||
|
- master
|
||||||
|
image: cr.d.xiaomi.net/bigdata-fe/matrix-cli
|
||||||
|
script:
|
||||||
|
- matrix-cli config set --access-key $MATRIX_AK --secret-key $MATRIX_SK
|
||||||
|
- matrix-cli deploy --project $MATRIX_PROJECT --deploy-space $MATRIX_SPACE --reason "$CI_COMMIT_MESSAGE" --deploy-percentage 1 --tag $CI_COMMIT_SHA
|
5
db/prisma/index.ts
Normal file
5
db/prisma/index.ts
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { PrismaClient } from "@prisma/client"
|
||||||
|
|
||||||
|
const prisma = new PrismaClient()
|
||||||
|
|
||||||
|
export default prisma
|
@ -1,19 +0,0 @@
|
|||||||
import { PrismaClient } from "@prisma/client"
|
|
||||||
|
|
||||||
const prisma = new PrismaClient()
|
|
||||||
|
|
||||||
const main = async () => {
|
|
||||||
const user = await prisma.user.create({
|
|
||||||
data: {
|
|
||||||
name: "Alice",
|
|
||||||
email: "alice@example.com",
|
|
||||||
},
|
|
||||||
})
|
|
||||||
console.log(user)
|
|
||||||
const users = await prisma.user.findMany()
|
|
||||||
console.log(users)
|
|
||||||
}
|
|
||||||
|
|
||||||
main().then(() => {
|
|
||||||
prisma.$disconnect()
|
|
||||||
})
|
|
@ -1,26 +1,35 @@
|
|||||||
export default {
|
import pluginJs from "@eslint/js"
|
||||||
languageOptions: {
|
import simpleImportSort from "eslint-plugin-simple-import-sort"
|
||||||
ecmaVersion: 2021,
|
import unusedImports from "eslint-plugin-unused-imports"
|
||||||
sourceType: "module",
|
import globals from "globals"
|
||||||
},
|
import tseslint from "typescript-eslint"
|
||||||
ignores: ["*.js", "*.cjs", "*.mjs", "/src/Backup/*"],
|
|
||||||
plugins: ["@typescript-eslint", "simple-import-sort"],
|
export default [
|
||||||
extends: [
|
{ files: ["**/*.{js,mjs,cjs,ts}"] },
|
||||||
"eslint:recommended",
|
{ languageOptions: { globals: globals.browser } },
|
||||||
"plugin:@typescript-eslint/recommended",
|
pluginJs.configs.recommended,
|
||||||
"prettier",
|
...tseslint.configs.recommended,
|
||||||
],
|
{
|
||||||
rules: {
|
plugins: {
|
||||||
"@typescript-eslint/no-explicit-any": "off",
|
"simple-import-sort": simpleImportSort,
|
||||||
"simple-import-sort/imports": "error",
|
"unused-imports": unusedImports,
|
||||||
"simple-import-sort/exports": "error",
|
|
||||||
},
|
|
||||||
overrides: [
|
|
||||||
{
|
|
||||||
files: ["**/*.ts", "**/*.tsx"],
|
|
||||||
languageOptions: {
|
|
||||||
parser: "@typescript-eslint/parser",
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
],
|
rules: {
|
||||||
}
|
"@typescript-eslint/no-explicit-any": "off",
|
||||||
|
"@typescript-eslint/no-namespace": "off",
|
||||||
|
"simple-import-sort/imports": "error",
|
||||||
|
"simple-import-sort/exports": "error",
|
||||||
|
"no-unused-vars": "off", // Turn off base rule
|
||||||
|
"unused-imports/no-unused-imports": "error", // Enable plugin rule
|
||||||
|
"unused-imports/no-unused-vars": [
|
||||||
|
"warn",
|
||||||
|
{
|
||||||
|
vars: "all",
|
||||||
|
varsIgnorePattern: "^_",
|
||||||
|
args: "after-used",
|
||||||
|
argsIgnorePattern: "^_",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]
|
||||||
|
6
index.ts
6
index.ts
@ -25,3 +25,9 @@ Bun.serve({
|
|||||||
},
|
},
|
||||||
port: 3000,
|
port: 3000,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// // 关闭数据库连接
|
||||||
|
// process.on("SIGINT", async () => {
|
||||||
|
// await prisma.$disconnect()
|
||||||
|
// process.exit(0)
|
||||||
|
// })
|
||||||
|
@ -3,8 +3,8 @@
|
|||||||
"module": "index.ts",
|
"module": "index.ts",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "dotenvx run -f .env.prod -- bun run index.ts",
|
"start": "bun run index.ts",
|
||||||
"dev": "dotenvx run -f .env -- bun run index.ts --watch",
|
"dev": "bun run index.ts --watch",
|
||||||
"lint": "oxlint --fix .",
|
"lint": "oxlint --fix .",
|
||||||
"prepare": "husky",
|
"prepare": "husky",
|
||||||
"prettier": "prettier --write .",
|
"prettier": "prettier --write .",
|
||||||
@ -13,7 +13,6 @@
|
|||||||
"lint-staged": {
|
"lint-staged": {
|
||||||
"*.{js,jsx,ts,tsx}": [
|
"*.{js,jsx,ts,tsx}": [
|
||||||
"oxlint --fix",
|
"oxlint --fix",
|
||||||
"eslint --fix",
|
|
||||||
"prettier --write"
|
"prettier --write"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -28,10 +27,12 @@
|
|||||||
"bun-types": "latest",
|
"bun-types": "latest",
|
||||||
"eslint": "^9.2.0",
|
"eslint": "^9.2.0",
|
||||||
"eslint-plugin-simple-import-sort": "^12.1.0",
|
"eslint-plugin-simple-import-sort": "^12.1.0",
|
||||||
|
"eslint-plugin-unused-imports": "^4.1.4",
|
||||||
"husky": "^9.1.6",
|
"husky": "^9.1.6",
|
||||||
"lint-staged": "^15.2.10",
|
"lint-staged": "^15.2.10",
|
||||||
"oxlint": "^0.11.1",
|
"oxlint": "^0.11.1",
|
||||||
"prettier": "^3.3.3"
|
"prettier": "^3.3.3",
|
||||||
|
"typescript-eslint": "^8.15.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"typescript": "^5.0.0"
|
"typescript": "^5.0.0"
|
||||||
|
7
routes/event/index.ts
Normal file
7
routes/event/index.ts
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
const templateFunc = () => {}
|
||||||
|
|
||||||
|
const template = {
|
||||||
|
templateFunc,
|
||||||
|
}
|
||||||
|
|
||||||
|
export default template
|
Loading…
x
Reference in New Issue
Block a user