mirror of
https://github.com/spaytac/orbiter.git
synced 2026-01-21 20:14:41 +00:00
Initial commit
This commit is contained in:
parent
f69e771919
commit
0e8be22711
2
ui/.gitignore
vendored
Normal file
2
ui/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
/node_modules/
|
||||
/.next/
|
||||
3
ui/README.md
Normal file
3
ui/README.md
Normal file
@ -0,0 +1,3 @@
|
||||
# Orbiter UI
|
||||
|
||||
User interface built with React + Next.js
|
||||
4920
ui/package-lock.json
generated
Normal file
4920
ui/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
27
ui/package.json
Normal file
27
ui/package.json
Normal file
@ -0,0 +1,27 @@
|
||||
{
|
||||
"name": "orbiter-ui",
|
||||
"version": "0.0.0",
|
||||
"description": "UI for orbiter autoscaler",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"dev": "next",
|
||||
"build": "next build",
|
||||
"start": "next start",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gianarb/orbiter.git"
|
||||
},
|
||||
"author": "Andres Martin",
|
||||
"license": "Apache-2.0",
|
||||
"bugs": {
|
||||
"url": "https://github.com/gianarb/orbiter/issues"
|
||||
},
|
||||
"homepage": "https://github.com/gianarb/orbiter/ui",
|
||||
"dependencies": {
|
||||
"next": "^3.0.6",
|
||||
"react": "^15.6.1",
|
||||
"react-dom": "^15.6.1"
|
||||
}
|
||||
}
|
||||
3
ui/pages/index.js
Normal file
3
ui/pages/index.js
Normal file
@ -0,0 +1,3 @@
|
||||
export default () => (
|
||||
<div>Welcome to next.js!</div>
|
||||
)
|
||||
Loading…
Reference in New Issue
Block a user