Skip to content

Commit 2743ede

Browse files
Merge branch 'opentiny:develop' into feat/ai-completions
2 parents 5e923f6 + 7cce9b6 commit 2743ede

188 files changed

Lines changed: 5759 additions & 856 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env.local

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@ SQL_HOST=localhost
22
SQL_PORT=3306
33
SQL_USER=root
44
SQL_PASSWORD=admin
5-
SQL_DATABASE=tiny_engine
5+
SQL_DATABASE=tiny_engine
6+
7+
backend_url=http://localhost:9090/material-center/api/component/bundle/create

.github/auto-labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ labels:
1010
sync: true
1111
matcher:
1212
title: '^.+!:|#breaking'
13-
body: '#breaking'
13+
body: '## Does this PR introduce a breaking change\?\s+- \[[xX]\] *Yes'
1414
- label: 'enhancement'
1515
sync: true
1616
matcher:

Dockerfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM node:18-alpine as build
2+
3+
WORKDIR /app/
4+
ADD . .
5+
RUN npm config set strict-ssl false \
6+
&& npm config set registry https://registry.npmmirror.com/ \
7+
&& npm install pnpm -g \
8+
&& pnpm i \
9+
&& pnpm build:plugin \
10+
&& pnpm build:prod
11+
12+
FROM nginx:latest
13+
COPY --from=build /app/designer-demo/dist/ /usr/share/nginx/html/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ $ npm install -g pnpm
3939

4040
```sh
4141
# Create low-code platform
42-
$ npx @opentiny/engine-cli create-platform <name>
42+
$ npx @opentiny/tiny-engine-cli@latest create-platform <name>
4343
# Enter the low-code platform directory
4444
$ cd <name>
4545
# Install dependencies

README.zh-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ $ npm install -g pnpm
3939

4040
```sh
4141
# 创建低代码平台
42-
$ npx @opentiny/engine-cli create-platform <name>
42+
$ npx @opentiny/tiny-engine-cli@latest create-platform <name>
4343
# 进入低代码平台
4444
$ cd <name>
4545
# 安装依赖

designer-demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "designer-demo",
33
"private": true,
4-
"version": "2.7.0-rc.0",
4+
"version": "2.8.0",
55
"type": "module",
66
"scripts": {
77
"dev": "cross-env vite",

0 commit comments

Comments
 (0)