Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Dependencies
**/node_modules

# Build outputs (let Docker build these fresh)
**/dist

# Git
.git
.gitignore

# Environment files
.env
.env.*

# IDE
.vscode
.idea

# OS files
.DS_Store
Thumbs.db

# Logs
*.log
npm-debug.log*

# Database files (mounted as volume instead)
rtmediaproxy_server/database/
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ WORKDIR /app
COPY rtmediaproxy_frontend/package.json rtmediaproxy_frontend/package-lock.json* ./frontend/
COPY rtmediaproxy_server/package.json rtmediaproxy_server/package-lock.json* ./server/

# Install frontend dependencies
# Install frontend dependencies (including devDependencies for build)
WORKDIR /app/frontend
RUN npm ci --only=production
RUN npm ci

# Install server dependencies
WORKDIR /app/server
Expand Down
9 changes: 0 additions & 9 deletions rtmediaproxy_frontend/astro.config.mjs

This file was deleted.

18 changes: 18 additions & 0 deletions rtmediaproxy_frontend/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="stylesheet" href="/static/pico.min.css" />
<title>RTMediaProxy</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<noscript>
<h1>This app can't do anything without JavaScript enabled.</h1>
<p>Please turn it on. If you don't nothing will happen here.</p>
</noscript>
</body>
</html>
Loading