Sprint 1 - Project scaffold

This commit is contained in:
2026-07-19 00:44:54 +02:00
parent ab49999649
commit 657496fe49
5 changed files with 33 additions and 1 deletions

5
.gitignore vendored
View File

@@ -0,0 +1,5 @@
node_modules/
dist/
.env
*.db
.DS_Store

View File

@@ -1 +1,12 @@
# LaunchPad
# LaunchPad
LaunchPad is a modern Homelab launcher.
## Planned stack
- React + Vite + TypeScript
- Fastify
- SQLite + Drizzle
- Docker Compose
Sprint 1 contains the initial project scaffold.

1
backend/README.md Normal file
View File

@@ -0,0 +1 @@
# Backend (Fastify)

View File

@@ -0,0 +1,14 @@
version: "3.9"
services:
backend:
build: ./backend
ports:
- "3001:3001"
frontend:
build: ./frontend
ports:
- "3000:3000"
depends_on:
- backend

1
frontend/README.md Normal file
View File

@@ -0,0 +1 @@
# Frontend (React/Vite)