583cdc6e0e
This commit crate the Satellite Admin Web UI v1 * Bootstrap the files installing the project template: https://github.com/sveltejs/template * Add the prettier prettier-plugin-svelte NPM packages as dev dependencies. * Add an empty prettierrc.toml. * Transform the project template to use Typescript rather than Javasript. See: https://github.com/sveltejs/template#using-typescript * Replace the default favicon by the Storj logo. * Create components in companion of some Typescript code which allows to generate a simple HTML page based on an opinionated definition of API. * Implement all the Admin API client calls in the format that the UI generator components requires for rendering the UI from them. Change-Id: I58fa586d68dc8998e5d89db169b8e90204f0a96d
19 lines
508 B
HTML
19 lines
508 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
|
|
<title>Storj Satellite Admin Console</title>
|
|
|
|
<link rel="icon" type="image/png" href="/favicon.ico" />
|
|
<link rel="stylesheet" href="/global.css" />
|
|
<link rel="stylesheet" href="/pretty-print-json.css" />
|
|
<link rel="stylesheet" href="/build/bundle.css" />
|
|
|
|
<script defer src="/build/bundle.js"></script>
|
|
</head>
|
|
|
|
<body></body>
|
|
</html>
|