https://github.com/mesamo/dva-admin
A dashboard application built upon dva and ant-design
https://github.com/mesamo/dva-admin
antd dva firebase react travis-ci
Last synced: 3 months ago
JSON representation
A dashboard application built upon dva and ant-design
- Host: GitHub
- URL: https://github.com/mesamo/dva-admin
- Owner: Mesamo
- License: mit
- Created: 2017-07-03T15:44:29.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-27T02:34:51.000Z (over 7 years ago)
- Last Synced: 2025-03-22T06:01:32.420Z (3 months ago)
- Topics: antd, dva, firebase, react, travis-ci
- Language: JavaScript
- Homepage: https://dva-admin.firebaseapp.com/
- Size: 1010 KB
- Stars: 20
- Watchers: 4
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dva-admin
[](https://travis-ci.org/Mesamo/dva-admin)
[](https://badge.fury.io/gh/Mesamo%2Fdva-admin)
[](https://www.codacy.com/app/mesamo/dva-admin?utm_source=github.com&utm_medium=referral&utm_content=Mesamo/dva-admin&utm_campaign=badger)A dashboard application built upon dva and ant-design
## Live Demo
This live demo is deploy on firebase hosting. You can view a live version of this demo [here](https://dva-admin.firebaseapp.com).# Based on
* [Dva][dva-repo] - React and redux based, lightweight and elm-style framework.
* [Ant Design][antd-repo] - A UI Design Language
* [Firebase][firebase-url] - Firebase helps you build better mobile apps and grow your business.## Getting Started
Install dependencies
```bash
$ yarn
```Start dev server
```bash
$ yarn start
```Build
```bash
$ yarn build
```## Debugging in the Editor
Need to have the latest version of VS Code and VS Code Chrome [Debugger Extension][extension] installed.
Then add the block below to your launch.json file and put it inside the .vscode folder in your app’s root directory.
```json
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome",
"url": "http://localhost:8000",
"sourceMaps": true,
"webRoot": "${workspaceRoot}/src",
"smartStep": true,
"internalConsoleOptions": "openOnSessionStart",
"sourceMapPathOverrides": {
"webpack:///src/*": "${webRoot}/*"
}
}
]
}
```
Start your app by running `yarn start`, and start debugging in VS Code by pressing F5 or by clicking the green debug icon. You can now write code, set breakpoints, make changes to the code, and debug your newly modified code—all from your editor.## Talk
* [Slack](https://mesamo.slack.com)## Special thanks to
zuiidea: [https://github.com/zuiidea/antd-admin](https://github.com/zuiidea/antd-admin)
sorrycc: [https://github.com/dvajs/dva-example-user-dashboard](https://github.com/dvajs/dva-example-user-dashboard)
pmg1989: [https://github.com/pmg1989/dva-admin](https://github.com/pmg1989/dva-admin)## License
[MIT](https://tldrlegal.com/license/mit-license)[demo-url]: https://dva-admin.firebaseapp.com
[dva-repo]: https://github.com/dvajs/dva
[antd-repo]: https://github.com/ant-design/ant-design
[firebase-url]: https://firebase.google.com/
[extension]: https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome