# 后台运营管理 **Repository Path**: midhua/ktadmin ## Basic Information - **Project Name**: 后台运营管理 - **Description**: 后台运营管理 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-05-19 - **Last Updated**: 2024-06-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # README # This README would normally document whatever steps are necessary to get your application up and running. ### What is this repository for? ### * Haier ZY Online Shopping Guide admin platform ### How do I get set up? ### To build the template from scratch you will be required to have following tools * Download and install nodejs [https://nodejs.org](https://nodejs.org) * Open the console inside of extracted folder and run `npm install` to fetch all dependencies * Run `gulp` to build sources * Go to `release\` folder in check out your freshly made compiled files * Run `gulp serve` and enjoy the beauty! ### Contribution guidelines ### * Create a PR * Make sure your code can approve compile * Don't push code to Master branch before PR approved * Assign a code reviewer * Wait for PR approved ### Who do I talk to? ### * Haier ZY admin manager * Haier ZY web developer ### Git Branch Notes Git模型 [A successful Git branching model](http://nvie.com/posts/a-successful-git-branching-model/), 我们目前可以省略 release环节 ``` ** master和develop只存储源码,不包含编译后的目录。 ** launch是发布分支,正式和测试个对应一个,独立使用, 这样可以保证hotfix分支的修复验证。 ** 测试发布分支:launch/develop ** 正式发布分支:launch/production eg: develop测试环境发布 > git push origin develop > git chekcout launch/develop > git merge develop --no-ff > gulp > git push origin launch/develop > ssh 登录到测试服务器 > git pull origin launch/develop ```