Iddc开发环境
目录
常用信息
用户/密码:wangbo/wangbo
Svn地址:https://CNBEJTAXAPP03.atrapa.deloitte.com/svn/源代码管理/DrTaxPlatform/trunk
https://10.172.64.204/ nyan/123456 NTC_user1/123456
[20/03/2019 14:17] Shen, Don Donghuan (CN - Shanghai): 就是这么怪 NTC_USER1 NTC_USER2 ET_USER1 ET_USER2 密码 123456
http://10.172.128.201:9090/zentao/ wangbo/dtt1234567
http://10.172.64.202:58081/ tax/tax123456
文件:页面设计-第一期v1.xlsx 文件:页面设计-第一期 - COR - V9.xlsx
[2019/2/19 11:12] Zhu, Eric Cheng (CN - Chongqing): 波哥 http://10.172.64.205:9000 sonar http://10.172.64.205:8080/jenkins http://10.172.64.204:9090/jenkins/ jenkins/jenkins
[2019/2/19 11:12] 好的.
[2019/2/19 11:12] Zhu, Eric Cheng (CN - Chongqing): jenkins admin 123456 sonar admin admin
10.172.64.205 .\tax Dtt1234567
10.172.64.204 .\tax Dtt@1234567!
接口文档
https://cnbejtaxapp03.atrapa.deloitte.com/svn/项目管理/6 HK-Corporate Tax Filing/30_系统开发/二期接口.docx
logs (file://CNBEJTAXAPP02/logs)
You may try to connect Hong Kong proxy server 10.80.232.126:80
root/Dtt!123456789
前端
\config\index.js 修改后端调试地址 src\utils\fetch.js中可以不用重启
npm install -g yarn npm install -g nrm nrm ls #可以查看npm的数据源,通过nrm use xxx进行切换 nrm use taobao yarn install
后端
注册中心
测试环境在10.172.64.202 开发环境在10.172.64.204
tax-basic
linux
Hello Quan,
The three hosts your requested have been setup. Please refer to the form below and the columns in red.
You're able to access SSH and HTTPS service from company network.
用途 用途描述 CPU Memory Disk OS Ports Cloud IP User/Password SSH(22) HTTPS(443)
机器1 开发环境 部署下表应用,当做项目组开发环境. 8Core 16G 200GB Centos7 mini 22,443 10.13.38.69 centos/e4c01a6e dai.deloitte.com:6922 dai.deloitte.com:6944
机器2 测试环境 部署上表应用,当做项目组测试环境. 4Core 8G 200GB Centos7 mini 22,443 10.13.38.82 centos/e4c01a6e dai.deloitte.com:8222 dai.deloitte.com:8244
机器3 实验环境 用于项目组成员,做实验学习. 4Core 8G 200GB Centos7 mini 22,443 10.13.38.78 centos/e4c01a6e dai.deloitte.com:7822 dai.deloitte.com:7844
机器4 公共组件安装环境 例如,安装gitlab,SVN等版本管理软件或其他依赖linux系统组件. 0 0
- 端口映射发送huang,kimmy dezhi,说明申请的端口和原因 ,抄送Li, Leon Lei ,Wang, Bodhi Faqun
- 机器1 开发环境-->8Core 16G-->项目组开发环境-->
- 机器2 测试环境-->4Core 8G-->项目组测试环境-->
- 机器3 实验环境-->4Core 8G-->实验环境-->学习环境自己找,此环境用于所有工具部署 例如,安装gitlab,SVN等版本管理软件或其他依赖linux系统组件
svn cor
代码地址:https://CNBEJTAXAPP03.atrapa.deloitte.com/svn/源代码管理/DrTaxPlatform/trunk/tax-cor
注:请及时修改初始密码,通过以下方式修改SVN初始密码
通过浏览器访问地址https://10.172.64.203,输入用户名和密码后进入主页面,点击右上角自助修改密码区域,修改初始密码。如下图所示
测试邮箱设置
maven设置
settings.xml
- 需要自定义localRepository
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<localRepository>C:/Users/jasonbwang/.m2</localRepository>
<interactiveMode>true</interactiveMode>
<usePluginRegistry/>
<offline>false</offline>
<pluginGroups/>
<servers>
<server>
<id>tax-releases</id>
<username>tax</username>
<password>tax123456</password>
</server>
<server>
<id>tax-snapshots</id>
<username>tax</username>
<password>tax123456</password>
</server>
<server>
<id>tax-3rd-party</id>
<username>tax</username>
<password>tax123456</password>
</server>
</servers>
<proxies/>
<profiles>
<profile>
<id>jdk-1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
<repositories>
<!-- oschina maven -->
<repository>
<id>oschinaRepository</id>
<name>local private nexus</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>nexus</id>
<url>http://10.172.64.202:58081/repository/ctio-maven-group/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>oschinaPluginRepository</id>
<name>local private nexus</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>public</id>
<name>Public Repositories</name>
<url>http://10.172.64.202:58081/repository/ctio-maven-group/</url>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
</settings>
distributionManagement,repositories,pluginRepositories
<distributionManagement>
<repository>
<id>tax-releases</id>
<name>tax-releases</name>
<url>http://10.172.64.202:58081/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>tax-snapshots</id>
<name>tax-snapshots</name>
<url>http://10.172.64.202:58081/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<repositories>
<!--阿里云主仓库,代理了maven central和jcenter仓库-->
<repository>
<id>aliyun</id>
<name>aliyun</name>
<url>https://maven.aliyun.com/repository/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>nexus</id>
<url>http://10.172.64.202:58081/repository/ctio-maven-group/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<!--阿里云代理Spring 插件仓库-->
<pluginRepository>
<id>spring-plugin</id>
<name>spring-plugin</name>
<url>https://maven.aliyun.com/repository/spring-plugin</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>public</id>
<name>Public Repositories</name>
<url>http://10.172.64.202:58081/repository/ctio-maven-group/</url>
</pluginRepository>
</pluginRepositories>
proxies
<proxies>
<proxy>
<id>deloitte</id>
<active>true</active>
<protocol>http</protocol>
<username>admin</username>
<password>123456</password>
<host>10.172.64.36</host>
<port>80</port>
<nonProxyHosts>deloitte.com.cn|10.172.64.202</nonProxyHosts>
</proxy>
</proxies>