# 3DWebPlatform **Repository Path**: hs099/a3dwebplatform ## Basic Information - **Project Name**: 3DWebPlatform - **Description**: 3DWebPlatform - **Primary Language**: JavaScript - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-07-05 - **Last Updated**: 2022-07-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 3DWebPlatform > 3D网页平台,用于实验仿真与展示。 ### Structure ``` 3DWebPlatform/ |-- bin/ | |-- hotbuild | |-- www |-- views/ | |-- index.ejs |-- .gitignore |-- app.js |-- LICENSE |-- package.json |-- package-lock.json |-- README.md ``` ### Installation ```shell npm install ``` ### Configuration ##### 热部署配置 ![hot_deployment_configuration.png](.asserts/hot_deployment_configuration.png) ### Git ```shell cd root #进入根目录 git clone https://gitee.com/hs099/a3dwebplatform.git # 克隆源码 cd a3dwebplatformd #进入项目根目录 git branch -b new_branch #创建一个名为‘new_branch’的本地分支,并切换到new_branch git add . #添加当前目录下所有文件(递归遍历子文件夹)到git cache中 git commit . -m "commit message" # 提交当前cache内容,"commit message"为版本标记 git stash #暂存当前分支中的编辑内容 git stash lsit #列出stash list git stash apply stash@{0}#应用stash@{0}暂存内容 git checkout master # 切换到本地master分支 git merge new_branch # 将new_branch中的修改合并到master分支中来 git push origin master:master #将本地的master分支push到远程的origin:master分支 ```