Initial version #1

Merged
Thilawyn merged 25 commits from base-project into master 2025-09-18 01:26:10 +02:00
4 changed files with 11 additions and 4 deletions
Showing only changes of commit 1a4a11a552 - Show all commits

2
.gitignore vendored
View File

@@ -32,5 +32,3 @@ report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
# Finder (MacOS) folder config
.DS_Store
/tempo_data

View File

@@ -35,7 +35,7 @@ services:
webapp:
<<: *service-base
image: oven/bun:latest
image: node:20
ports:
- ${PORT:?PORT missing}:80
volumes:
@@ -43,7 +43,7 @@ services:
working_dir: /app/packages/webapp
environment:
<<: *env-base
entrypoint: ["bun", "dev"]
entrypoint: ["npm", "run", "dev"]
stop_signal: SIGKILL
tempo:

View File

@@ -5,4 +5,11 @@ import { defineConfig } from "vite"
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
host: true,
port: 80,
proxy: {
"/rpc*": "http://server",
},
},
})

2
tempo_data/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
/*
!/.gitignore