Commit 5b8a881b authored by Lukáš Gorazd Hrodek's avatar Lukáš Gorazd Hrodek
Browse files

chore: update workspace config, docs, and railpack setup scripts

parent 0e1bfeb1
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
@@ -10,6 +10,14 @@
  "workbench.colorCustomizations": {
    "activityBar.background": "#062A69",
    "titleBar.activeBackground": "#093A93",
    "titleBar.activeForeground": "#F9FBFF"
    "titleBar.activeForeground": "#F9FBFF",
    "titleBar.inactiveBackground": "#062A68",
    "titleBar.inactiveForeground": "#F9FBFF",
    "statusBar.background": "#062A68",
    "statusBar.foreground": "#F9FBFF",
    "statusBar.debuggingBackground": "#062A68",
    "statusBar.debuggingForeground": "#F9FBFF",
    "statusBar.noFolderBackground": "#062A68",
    "statusBar.noFolderForeground": "#F9FBFF"
  }
}
+3 −3
Original line number Diff line number Diff line
@@ -45,9 +45,9 @@ RUN apk add --no-cache bash curl

RUN corepack enable && corepack prepare pnpm@latest --activate

ARG NIXPACKS_VERSION=1.41.0
RUN curl -fsSL "https://github.com/railwayapp/nixpacks/releases/download/v${NIXPACKS_VERSION}/nixpacks-v${NIXPACKS_VERSION}-x86_64-unknown-linux-musl.tar.gz" \
	| tar -xz -C /usr/local/bin nixpacks
ARG RAILPACK_VERSION=0.18.0
RUN curl -fsSL "https://github.com/railwayapp/railpack/releases/download/v${RAILPACK_VERSION}/railpack-v${RAILPACK_VERSION}-x86_64-unknown-linux-musl.tar.gz" \
	| tar -xz -C /usr/local/bin railpack

# Copy root configurations
COPY --from=builder /app/package.json ./package.json
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ DeckHand is a user-friendly application for managing Docker containers and conta
- **✅ Service Management** - Individual service control and monitoring
- **✅ Template System** - Pre-built application templates
- **✅ Git Repository Integration** - Deploy directly from Git repos
- **✅ Nixpacks Building** - Automatic containerization
- **✅ Railpack Building** - Automatic containerization
- **✅ Environment Variables** - Secure environment management

### 🔐 OAuth Authentication System
Compare be855b2d to 4e3696b8
Original line number Diff line number Diff line
Subproject commit be855b2da1021eb26cf4667848a246b6844c44e5
Subproject commit 4e3696b83daff1ff4513fc4231f160bad8af0681
+1 −2
Original line number Diff line number Diff line
@@ -20,8 +20,7 @@
    "turbo": "^2.3.3"
  },
  "packageManager": "pnpm@8.15.6",
  "private": false,
  "license": "MIT",
  "private": true,
  "pnpm": {
    "overrides": {
      "@types/react": "^18.3.18",
Loading