Mirror This repo mirrors from Gitlab to Github. Please commit to the Gitlab repo: https://gitlab.com/canyacoin/canapps/canseek/web-ui
CanSeek - Refer High Quality Talent Earn Rewards
Get encrypt zip file from google docs, then move them to right places according to .travis.yml
.
npm install -g @angular/cli yarn
yarn
https://ng.ant.design/docs/introduce/en
yarn run start
yarn run build:staging # for staging
yarn run build:prod # for production
git push origin develop # for https://staging.canseek.io/
git push origin master # for https://canseek.io/
├── src
│ ├── app
│ │ ├── ...
│ │ ├── components # common components
│ │ │ ├── ...
│ │ │ └── cmp-upload
│ │ ├── layout
│ │ │ ├── footer
│ │ │ └── header
│ │ ├── models
│ │ │ ├── authstate.ts
│ │ │ ├── notify.ts
│ │ │ └── profile.ts
│ │ ├── pages # map router
│ │ │ ├── home
| │ │ │ └── components
| │ │ │ ├── cmp-header
| │ │ │ └── cmp-post
│ │ │ ├── pagenotfound
│ │ │ ├── ...
│ │ ├── services
│ │ │ ├── ...
│ │ │ └── profile.service.ts
│ │ ├── store.ts
│ │ └── util.ts
│ ├── assets
│ │ ├── ...
│ │ ├── fonts # from http://www.iconfont.cn/
│ │ │ ├── ...
│ │ │ ├── iconfont
│ │ │ └── ...
│ │ └── ...
│ ├── environments
│ │ ├── environment.dev.ts # ENV=dev
│ │ ├── environment.prod.ts # ENV=prod
│ │ └── environment.ts
│ ├── styles.less # overwrite antd's style
│ ├── theme.less # antd theme variables
│ └── ...
└── ...
View on google docs