Changeset - b731eaad3adf
[Not reviewed]
default
5 1 5
drewp@bigasterisk.com - 3 years ago 2022-04-09 18:52:50
drewp@bigasterisk.com
deprecate light9/web/ - use light9/{service}/ with web/ subdir if needed
6 files changed with 2 insertions and 3 deletions:
0 comments (0 inline, 0 general)
bin/homepage
Show inline comments
 
@@ -30,9 +30,9 @@ http {
 
  }
 

	
 
 }
 
}
 
EOF
 
head -1 /tmp/light9_nginx_routes.conf
 
pnpx vite -c light9/web/homepage/vite.config.ts &
 
pnpx vite -c light9/homepage/vite.config.ts &
 
/usr/sbin/nginx -c $CONF
 
wait
light9/homepage/ServiceButtonRow.ts
Show inline comments
 
file renamed from light9/web/homepage/ServiceButtonRow.ts to light9/homepage/ServiceButtonRow.ts
light9/homepage/StatsLine.ts
Show inline comments
 
file renamed from light9/web/homepage/StatsLine.ts to light9/homepage/StatsLine.ts
 
@@ -223,13 +223,12 @@ export class StatsLine extends LitElemen
 
        m.name != "process_resident_memory_bytes" &&
 
        m.name != "process_start_time_seconds" &&
 
        m.name != "process_cpu_seconds_total"
 
      );
 
    };
 

	
 
    // return table(this.stats, []);
 
    const displayedStats = this.stats.filter(nonBoring);
 
    return html`
 
      <div>
 
        <table>
 
          ${displayedStats.map(
 
            (row, rowNum) => html`
light9/homepage/StatsProcess.ts
Show inline comments
 
file renamed from light9/web/homepage/StatsProcess.ts to light9/homepage/StatsProcess.ts
light9/homepage/index.html
Show inline comments
 
file renamed from light9/web/homepage/index.html to light9/homepage/index.html
light9/homepage/vite.config.ts
Show inline comments
 
file renamed from light9/web/homepage/vite.config.ts to light9/homepage/vite.config.ts
 
import { defineConfig } from "vite";
 

	
 
export default defineConfig({
 
  root: "./light9/web/homepage",
 
  root: "./light9/homepage",
 
  server: {
 
    host: "0.0.0.0",
 
    strictPort: true,
 
    port: 8300,
 
    hmr: {
 
      port: 8400,
0 comments (0 inline, 0 general)