Introduce the `WARPBOX_DATA_DIR` environment variable to define where runtime data is stored. This directory will house uploaded files, the bbolt metadata database, and application logs. Changes include: - Added `WARPBOX_DATA_DIR` to configuration, defaulting to `./data`. - Implemented a custom logging package that writes JSONL logs to the data directory. - Updated `.gitignore` and `.env.example` to support the new data directory. - Documented the runtime data structure in `README.md`. - Updated the frontend upload script to handle form submission and display results.
45 lines
1.6 KiB
Plaintext
45 lines
1.6 KiB
Plaintext
{{define "base"}}
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{if .Title}}{{.Title}} - {{end}}{{.AppName}}</title>
|
|
<meta name="description" content="{{.Description}}">
|
|
<meta name="theme-color" content="#09090b">
|
|
<meta property="og:site_name" content="{{.AppName}}">
|
|
<meta property="og:title" content="{{if .Title}}{{.Title}}{{else}}{{.AppName}}{{end}}">
|
|
<meta property="og:description" content="{{.Description}}">
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:url" content="{{.BaseURL}}">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<link rel="stylesheet" href="/static/css/app.css">
|
|
<script defer src="/static/js/app.js"></script>
|
|
</head>
|
|
<body class="dark">
|
|
<a class="skip-link" href="#main">Skip to content</a>
|
|
<header class="site-header">
|
|
<nav class="nav" aria-label="Main navigation">
|
|
<a class="brand" href="/" aria-label="{{.AppName}} home">
|
|
<span class="brand-mark" aria-hidden="true">W</span>
|
|
<span>{{.AppName}}</span>
|
|
</a>
|
|
<div class="nav-links">
|
|
<a class="button button-ghost" href="/api/v1/health">API</a>
|
|
<a class="button button-outline" href="/healthz">Health</a>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
|
|
<main id="main">
|
|
{{template "content" .}}
|
|
</main>
|
|
|
|
<footer class="site-footer">
|
|
<span>{{.AppName}} · {{.CurrentYear}} · self-hosted</span>
|
|
<span class="footer-links"><a href="/">Upload</a><a href="/healthz">Health</a></span>
|
|
</footer>
|
|
</body>
|
|
</html>
|
|
{{end}}
|