add initial code for webui

This commit is contained in:
Sukchan Lee 2017-05-12 15:02:28 +09:00
parent 57d94969bf
commit 042e167bb5
4 changed files with 3319 additions and 0 deletions

11
webui/README.md Normal file
View File

@ -0,0 +1,11 @@
Prerequisite
============
Install node at https://nodejs.org/
Install yarn at https://yarnpkg.com/
Running
==============
yarn run dev

19
webui/package.json Normal file
View File

@ -0,0 +1,19 @@
{
"name": "nextepc-webui",
"version": "0.1.0",
"description": "Web User Interface for NextEPC",
"main": "index.js",
"repository": "https://github.com/acetcom/cellwire",
"author": "NextEPC Group",
"license": "GPL-3.0",
"dependencies": {
"next": "^2.3.1",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
}
}

2
webui/pages/index.js Normal file
View File

@ -0,0 +1,2 @@
import React from 'react'
export default () => <div>Hello World!</div>

3287
webui/yarn.lock Normal file

File diff suppressed because it is too large Load Diff