feat: prepare the infrastructure #12

Merged
naomi merged 5 commits from feat/init into main 2025-05-22 18:52:14 -07:00
5 changed files with 11 additions and 7 deletions
Showing only changes of commit c121b7d5aa - Show all commits

View File

@ -1,10 +1,10 @@
# Nutrition Tracker # Vitalia
This application is a tool I can use to track my daily nutrition intake. The hosted instance requires a password to access, but you are welcome to use this to host your own tool! Vitalia aims to be a complete nutrition tracker with all the bells and whistles, but none of the paywalls. She's here to help you reach your fitness goals!
## Live Version ## Live Version
This page is currently deployed. [View the live website.](https://food.nhcarrigan.com) This page is currently deployed. [View the live website.](https://vitalia.nhcarrigan.com)
## Feedback and Bugs ## Feedback and Bugs

View File

@ -14,5 +14,5 @@ import { RouterOutlet } from "@angular/router";
templateUrl: "./app.component.html", templateUrl: "./app.component.html",
}) })
export class AppComponent { export class AppComponent {
public title = "client"; public title = "Vitalia";
} }

View File

@ -1 +1,5 @@
<p>landing works!</p> <h1>Vitalia</h1>
<p>Vitalia is your nutritional assistant and companion, here to help you reach your fitness goals!</p>
<p>Stay tuned, we're hard at work to bring her to life!</p>

View File

@ -2,7 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>Client</title> <title>Vitalia</title>
<base href="/"> <base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico"> <link rel="icon" type="image/x-icon" href="favicon.ico">

View File

@ -7,6 +7,6 @@
import { Logger } from "@nhcarrigan/logger"; import { Logger } from "@nhcarrigan/logger";
export const logger = new Logger( export const logger = new Logger(
"Nutrition API", "Vitalia",
process.env.LOG_TOKEN ?? "", process.env.LOG_TOKEN ?? "",
); );