mirror of
https://github.com/johndoe6345789/goodpackagerepo.git
synced 2026-04-24 13:54:59 +00:00
Fix backend Dockerfile and frontend layout for client-side rendering
Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
@@ -6,8 +6,8 @@ WORKDIR /app
|
||||
COPY requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
# Copy application
|
||||
COPY app.py .
|
||||
# Copy application files
|
||||
COPY app.py auth.py ./
|
||||
|
||||
# Copy schema from parent directory
|
||||
COPY ../schema.json /app/schema.json
|
||||
|
||||
@@ -1,11 +1,8 @@
|
||||
'use client';
|
||||
|
||||
import '../styles/globals.scss';
|
||||
import Navbar from '../components/Navbar';
|
||||
|
||||
export const metadata = {
|
||||
title: 'Good Package Repo',
|
||||
description: 'World\'s first good package repository',
|
||||
};
|
||||
|
||||
export default function RootLayout({ children }) {
|
||||
return (
|
||||
<html lang="en">
|
||||
|
||||
Reference in New Issue
Block a user