mirror of
https://github.com/kyantech/Palmr.git
synced 2025-11-03 05:23:19 +00:00
chore: update environment and docker configurations
Update .env.example to include SERVER_IP, add metadata to docs layout, and switch docker-compose image tags to 'latest' for consistency and clarity.
This commit is contained in:
@@ -9,6 +9,11 @@ const inter = Inter({
|
|||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
|
export const metadata = {
|
||||||
|
title: "🌴 Palmr. | Official Website",
|
||||||
|
description: "Palmr. is a fast, simple and powerful document sharing platform.",
|
||||||
|
};
|
||||||
|
|
||||||
export default function Layout({ children }: { children: ReactNode }) {
|
export default function Layout({ children }: { children: ReactNode }) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" className={inter.className} suppressHydrationWarning>
|
<html lang="en" className={inter.className} suppressHydrationWarning>
|
||||||
|
|||||||
@@ -9,4 +9,5 @@ MINIO_ROOT_PASSWORD="palmr123"
|
|||||||
MINIO_REGION="sa-east-1"
|
MINIO_REGION="sa-east-1"
|
||||||
MINIO_BUCKET_NAME="files"
|
MINIO_BUCKET_NAME="files"
|
||||||
PORT=3333
|
PORT=3333
|
||||||
|
SERVER_IP="localhost"
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
services:
|
services:
|
||||||
palmr-api:
|
palmr-api:
|
||||||
image: kyantech/palmr-api:v2.0.0-beta # Make sure to use the correct version (latest) of the image
|
image: kyantech/palmr-api:latest # Make sure to use the correct version (latest) of the image
|
||||||
container_name: palmr-api
|
container_name: palmr-api
|
||||||
depends_on:
|
depends_on:
|
||||||
postgres:
|
postgres:
|
||||||
@@ -30,7 +30,7 @@ services:
|
|||||||
start_period: 30s
|
start_period: 30s
|
||||||
|
|
||||||
palmr-app:
|
palmr-app:
|
||||||
image: kyantech/palmr-app:v2.0.0-beta # Make sure to use the correct version (latest) of the image
|
image: kyantech/palmr-app:latest # Make sure to use the correct version (latest) of the image
|
||||||
container_name: palmr-web
|
container_name: palmr-web
|
||||||
depends_on:
|
depends_on:
|
||||||
palmr-api:
|
palmr-api:
|
||||||
|
|||||||
Reference in New Issue
Block a user