Compare commits

..

2 Commits

Author SHA1 Message Date
56a60a9039 wip 2025-04-07 22:34:40 +02:00
0bc6afbb4b add compose for testing db 2025-04-07 22:34:21 +02:00
3 changed files with 8 additions and 2 deletions

8
compose.yml Normal file
View File

@ -0,0 +1,8 @@
services:
db:
image: postgres
restart: always
environment:
POSTGRES_PASSWORD: postgres
ports:
- "5432:5432"

View File

@ -20,7 +20,6 @@ export default async function App() {
<br />
<br /> &mdash; naresh
<br />
{JSON.stringify(gitea)}
<div
style={{
marginTop: "2rem",

View File

@ -49,4 +49,3 @@ export async function getGiteaActivity() {
}
}
}