From 7b5f382503c0ecaac67b92546f51b7a0dce47689 Mon Sep 17 00:00:00 2001 From: wpanda Date: Mon, 22 Dec 2025 11:34:32 +0100 Subject: [PATCH] . --- Dev/panda_n8n/.env | 7 ------ Dev/panda_n8n/Dockerfile | 19 --------------- Dev/panda_n8n/config/GEMINI.md | 41 -------------------------------- Dev/panda_n8n/docker-compose.yml | 33 ------------------------- 4 files changed, 100 deletions(-) delete mode 100644 Dev/panda_n8n/.env delete mode 100644 Dev/panda_n8n/Dockerfile delete mode 100644 Dev/panda_n8n/config/GEMINI.md delete mode 100644 Dev/panda_n8n/docker-compose.yml diff --git a/Dev/panda_n8n/.env b/Dev/panda_n8n/.env deleted file mode 100644 index 6fb636c..0000000 --- a/Dev/panda_n8n/.env +++ /dev/null @@ -1,7 +0,0 @@ -# Adatbázis beállítások -POSTGRES_DB=n8n -POSTGRES_USER=n8n -POSTGRES_PASSWORD=pandA6774 - -# Itt beállíthatsz egyedi időzónát az n8n számára, ha szükséges -# GENERIC_TIMEZONE=Europe/Budapest diff --git a/Dev/panda_n8n/Dockerfile b/Dev/panda_n8n/Dockerfile deleted file mode 100644 index 14dd273..0000000 --- a/Dev/panda_n8n/Dockerfile +++ /dev/null @@ -1,19 +0,0 @@ -# 1. lépés: Alap image -FROM fedora:latest - -# 2. lépés: Alap csomagok és NodeJS telepítése -RUN dnf update -y && \ - dnf install -y nodejs npm && \ - dnf clean all - -# 3. lépés: Globális npm csomagok telepítése (gemini-cli és n8n) -RUN npm install -g @google/gemini-cli n8n @n8n-io/n8n-nodes-base - -# 4. lépés: n8n portjának dokumentálása -EXPOSE 5678 - -# 5. lépés: Alapértelmezett munkakönyvtár beállítása az n8n adatoknak -WORKDIR /data - -# 6. lépés: A konténer indítási parancsa az n8n szerver elindításához -CMD ["n8n"] diff --git a/Dev/panda_n8n/config/GEMINI.md b/Dev/panda_n8n/config/GEMINI.md deleted file mode 100644 index 1b5e450..0000000 --- a/Dev/panda_n8n/config/GEMINI.md +++ /dev/null @@ -1,41 +0,0 @@ -# Project Gemini Workspace Overview - -This workspace is a collection of scripts, applications, documentation, and development projects related to system administration and automation. - -## Main Directories - -### `/Scripts/` -This directory contains all the scripts for automation and administration, organized by language. -- **`/bash/`**: Bash scripts. -- **`/hp aruba switch/`**: Scripts and documentation for HP Aruba switches. -- **`/powershell/`**: PowerShell scripts for various tasks. -- **`/python/`**: Python scripts, mainly for email and PDF processing. -- **`/regkey/`**: Registry key files. -- **`/sql/`**: SQL scripts for database creation and queries. - -### `/Dev/` -This directory contains various development projects, such as `network_scann/`, `switch_ip_scann_CSV/`, `switch_ip_scann_DB/` and serves as a collection of configuration files and notes for various system administration tasks. - - - -### `/Doku/` -This directory is used for documentation, data storage, and logs. It contains CSV and text files with user data, printer information, and various logs, organized into subdirectories like `Ai`, `Logs`, and `Pdf`. - -## Usage - -This workspace is a central hub for managing systems and developing automation solutions. -- Use the scripts in `/Scripts/` to perform specific administrative tasks. -- Refer to `/Doku/` for existing documentation and data exports. -- Install or run tools from the `/Apps/` directory. - -## -Magyarul csevegünk. -Ha E-Mail-t kell irni akkor arr ältaläban Németülvan rá szükség. -A kedvenc programozási nyelvem a Python. - -Weboldalak amiket hasznälni szoktunk: -mermaid.live - -Általában fedora linux alatt dolgozunk. -Második leggyakrabban használt linux az Ubuntu alapu. -Virtualizácionk Proxmox VE diff --git a/Dev/panda_n8n/docker-compose.yml b/Dev/panda_n8n/docker-compose.yml deleted file mode 100644 index 226de69..0000000 --- a/Dev/panda_n8n/docker-compose.yml +++ /dev/null @@ -1,33 +0,0 @@ -services: - n8n: - build: - context: . - ports: - - "5678:5678" - environment: - - DB_TYPE=postgresdb - - DB_POSTGRESDB_HOST=postgres - - DB_POSTGRESDB_PORT=5432 - - DB_POSTGRESDB_DATABASE=${POSTGRES_DB} - - DB_POSTGRESDB_USER=${POSTGRES_USER} - - DB_POSTGRESDB_PASSWORD=${POSTGRES_PASSWORD} - - N8N_EXTENSIONS_INSTALL=@n8n-io/n8n-nodes-base - volumes: - - ./config/.gemini:/root/.gemini - - n8n_data:/data - depends_on: - - postgres - - postgres: - image: postgres:15 - restart: always - environment: - - POSTGRES_DB=${POSTGRES_DB} - - POSTGRES_USER=${POSTGRES_USER} - - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} - volumes: - - postgres_data:/var/lib/postgresql/data - -volumes: - n8n_data: - postgres_data: