Skip to content

Commit f5fc8d5

Browse files
committed
logger.info23
1 parent 2d52610 commit f5fc8d5

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ This is a full stack web application template built with:
99

1010
---
1111

12-
## Live view
13-
https://fullstack-template-react.vercel.app/
14-
https://fullstack-template-vue.vercel.app/
15-
https://full-stack-api.fly.dev/docs
12+
## 🌐 Live View
13+
14+
- [React Frontend ](https://fullstack-template-react.vercel.app/)
15+
- [Vue Frontend ](https://fullstack-template-vue.vercel.app/)
16+
- [FastAPI Backend Docs ](https://full-stack-api.fly.dev/docs)
1617
---
1718

1819
## Features

fastapi-postgres/common/config.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
# flyctl proxy 5432 -a full-stack-db
1919
if IS_LOCAL:
2020
DATABASE_URL = DATABASE_URL
21-
DATABASE_URL = "postgresql+asyncpg://postgres:e0CEeFYUY7kERQcW@aws-0-us-east-1.pooler.supabase.com:6543/postgres"
2221
# DATABASE_URL = DATABASE_URL_PROD
2322

2423
class Settings:

react/public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<title>Hunter</title>
4+
<title>React Full Stack Template</title>
55
<link rel="icon" href="%PUBLIC_URL%/hunter.jpg" />
66
<meta charset="utf-8" />
77
<meta name="viewport" content="width=device-width, initial-scale=1" />

react/src/layout/MainLayout/Header/ProfileSection/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ const ProfileSection = () => {
121121
<MainCard border={false} elevation={16} content={false} boxShadow shadow={theme.shadows[16]}>
122122
<Box sx={{ p: 2 }}>
123123
<Stack direction="row" alignItems="center">
124-
<Typography variant="h4">Hunter</Typography>
124+
<Typography variant="h4">Full Stack Template</Typography>
125125
</Stack>
126126
</Box>
127127
<PerfectScrollbar style={{ height: '100%', maxHeight: 'calc(100vh - 250px)', overflowX: 'hidden' }}>

vue3/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap"
1212
/>
1313

14-
<title>Hunter</title>
14+
<title>Vue3 Template</title>
1515
</head>
1616
<body>
1717
<div id="app"></div>

vue3/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "Hunter",
2+
"name": "Vue3",
33
"version": "1.0.0",
44
"private": false,
55
"author": "Gilad",

vue3/src/assets/layouts/full/vertical-header/ProfileDD.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const customizer = useCustomizerStore();
99

1010
<template>
1111
<div class="pa-4">
12-
<span class="text-subtitle-2 text-medium-emphasis">Project Hunter</span>
12+
<span class="text-subtitle-2 text-medium-emphasis">Vue Full Stack Template</span>
1313

1414
<v-divider></v-divider>
1515
<perfect-scrollbar style="height: calc(100vh - 300px); max-height: 515px">

0 commit comments

Comments
 (0)