generated from Dicken/dickendock
Sprint 1 - Project scaffold
This commit is contained in:
5
.gitignore
vendored
5
.gitignore
vendored
@@ -0,0 +1,5 @@
|
||||
node_modules/
|
||||
dist/
|
||||
.env
|
||||
*.db
|
||||
.DS_Store
|
||||
|
||||
11
README.md
11
README.md
@@ -1 +1,12 @@
|
||||
# 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
1
backend/README.md
Normal file
@@ -0,0 +1 @@
|
||||
# Backend (Fastify)
|
||||
@@ -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
1
frontend/README.md
Normal file
@@ -0,0 +1 @@
|
||||
# Frontend (React/Vite)
|
||||
Reference in New Issue
Block a user