|
|
2 년 전 | |
|---|---|---|
| .idea | 3 년 전 | |
| schema | 7 년 전 | |
| src | 2 년 전 | |
| .gitignore | 3 년 전 | |
| .project | 7 년 전 | |
| GeneratorConfig.xml | 5 년 전 | |
| README.md | 3 년 전 | |
| jitao-server.iml | 3 년 전 | |
| pom.xml | 2 년 전 |
#jitao-server
在命令行工具中输入命令,git clone ,把复制的链接粘贴进去。 下载好项目文件后,进入项目文件夹,右键,选择Git Bash Here,打开命令行工具。输入 npm install,下载 node_modules文件。
三:运行项目 1.每一个项目都要生成公共文件,依次输入命令: npm run dlldev;npm run dllpro 。 2.进行项目打包:npm run build(本地),npm run dev(开服务器), 3.打生产包,先改版本号npm run dllpro,npm run pro。打包完成后,在build文件夹里找到版本文件夹,压缩后发给后台。 四:代码上传 在命令行中依次输入: git status(查看改动的文件);git add .(添加到本地库);git commit -am “修改个BUG”(推送更改消息);git pull(拉取仓库的文件合并到本地文件);git push(提交代码到仓库)。