Go to file
王昆 e39770eed4 [+] add formily widget 2021-08-23 15:21:58 +08:00
.github Add intercom app id during client build for the github-release workflow (#6197) 2021-07-28 09:31:49 +05:30
app [+] add formily widget 2021-08-23 15:21:58 +08:00
ci Add caching in CodeBuild CI for Docker images 2021-07-22 18:11:00 +05:30
contributions Adds YT Setup Videos to Docs (#5744) 2021-07-09 15:54:34 +05:30
deploy Use CentOS repo for RHEL installation (#6069) 2021-07-22 15:27:34 +05:30
static Update font-size in Readme how-it-works image (#5888) 2021-07-16 23:03:53 +05:30
.all-contributorsrc docs: add aswathkk as a contributor for code (#5490) 2021-06-30 12:51:15 +05:30
.deepsource.toml Create .deepsource.toml (#3593) 2021-03-19 11:40:59 +05:30
.env.example [Feature #3379] Added recaptcha for signup (#4701) 2021-06-08 11:10:11 +05:30
.gitignore [Feature] Grid Widget (#2389) 2021-04-23 11:13:13 +05:30
.imgbotconfig Added imgbot config file (#1655) 2020-11-09 17:52:53 +05:30
API.png [ImgBot] Optimize images (#1513) 2020-11-02 19:44:01 +05:30
CODE_OF_CONDUCT.md Readme (#11) 2020-07-01 16:42:41 +05:30
CONTRIBUTING.md Update CONTRIBUTING.md 2021-01-27 18:07:13 +05:30
IssuesReport.md Feature/hacktoberfest (#841) 2020-09-30 23:23:10 +05:30
LICENSE Update LICENSE 2021-05-27 12:53:55 +05:30
Query.png [ImgBot] Optimize images (#1513) 2020-11-02 19:44:01 +05:30
README.md Update font-size in Readme how-it-works image (#5888) 2021-07-16 23:03:53 +05:30
SECURITY.md Creating SECURITY.md for reporting security vulnerabilities 2020-12-12 22:12:49 +05:30
app.json Removing non-required fields from Heroku deployment. (#5978) 2021-07-20 23:30:59 +05:30
appsmith_templates.md Create appsmith_templates.md (#4412) 2021-06-23 19:32:23 +05:30
coverage-summary.json Improve autocomplete sorting (#5798) 2021-07-20 15:32:56 +05:30
heroku.yml Heroku Button implementation (#1721) 2020-11-18 18:53:59 +05:30
office_hours.md chore: Updates contact email 2021-07-20 10:10:03 +01:00

README.md

前端低代码工具base on AppSmith

🎈 启动项目windows

非windows

// 配置 host
127.0.0.1 dev.appsmith.com

// 环境变量
cp .env.example .env

// 启动本地 nginx docker
cd app/client
yarn start-proxy

// 启动前端服务
yarn 
yarn start-win

服务端指南

// .env 环境变量,开发测试 mongo、redis 地址
APPSMITH_MONGODB_URI="mongodb://10.10.13.50:27017/appsmith"
APPSMITH_REDIS_URL="redis://10.10.13.50:63799"

// 启动 java 服务
cd app/server
bash ./scripts/start-dev-server.sh

💕 合并 GitHub 更新

// 外网代理
export https_proxy=http://127.0.0.1:3083
export http_proxy=http://127.0.0.1:3083

// 添加 GitHub 远程仓库,定期同步
git remote add mirror https://github.com/appsmithorg/appsmith.git
git fetch mirror master
git checkout master
git merge mirror/master
git push origin master