Update let-us-start.md

This commit is contained in:
fantasticit 2022-08-16 14:32:24 +08:00 committed by GitHub
parent 5c013236cf
commit 32573978a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 0 deletions

View File

@ -64,6 +64,11 @@ pnpm run dev
**编译打包过程比较吃内存(大约 2G小内存服务器建议本地构建后上传可以在配置文件完成后运行 build-output.sh将打包后的 output 压缩发送到服务器后运行**。
文件内容:
{
"presets": ["next/babel"]
}解决SWC编译问题。
```bash
git clone https://github.com/fantasticit/think.git
cd think
@ -76,6 +81,18 @@ pm2 startup
pm2 save
```
#### swc 导致打包失败
要么根据报错安装相关系统环境依赖,要么在`think/packages/client`目录下加入 **.babelrc** 文件。
文件内容:
```
{
"presets": ["next/babel"]
}
```
### docker-compose
也可以使用 docker-compose 进行项目部署。首先,根据需要修改 `docker-compose.yml` 中的数据库、Redis 相关用户名、密码等配置,然后,从 `config/docker-prod-sample.yaml` 复制出 `config/prod.yaml` 并修改其中对应的配置。