Primer commit
This commit is contained in:
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,97 @@
|
||||
E:\Fitz_Studio
|
||||
├── .git
|
||||
│ ├── FETCH_HEAD
|
||||
│ ├── HEAD
|
||||
│ ├── config
|
||||
│ ├── description
|
||||
│ ├── hooks
|
||||
│ │ ├── applypatch-msg.sample
|
||||
│ │ ├── commit-msg.sample
|
||||
│ │ ├── fsmonitor-watchman.sample
|
||||
│ │ ├── post-update.sample
|
||||
│ │ ├── pre-applypatch.sample
|
||||
│ │ ├── pre-commit.sample
|
||||
│ │ ├── pre-merge-commit.sample
|
||||
│ │ ├── pre-push.sample
|
||||
│ │ ├── pre-rebase.sample
|
||||
│ │ ├── pre-receive.sample
|
||||
│ │ ├── prepare-commit-msg.sample
|
||||
│ │ ├── push-to-checkout.sample
|
||||
│ │ ├── sendemail-validate.sample
|
||||
│ │ └── update.sample
|
||||
│ ├── info
|
||||
│ │ └── exclude
|
||||
│ ├── objects
|
||||
│ │ ├── info
|
||||
│ │ └── pack
|
||||
│ └── refs
|
||||
│ ├── heads
|
||||
│ └── tags
|
||||
├── .gitignore
|
||||
├── .python-version
|
||||
├── .venv
|
||||
│ ├── .gitignore
|
||||
│ ├── .lock
|
||||
│ ├── CACHEDIR.TAG
|
||||
│ ├── Lib
|
||||
│ │ └── site-packages
|
||||
│ ├── Scripts
|
||||
│ │ ├── activate
|
||||
│ │ ├── activate.bat
|
||||
│ │ ├── activate.csh
|
||||
│ │ ├── activate.fish
|
||||
│ │ ├── activate.nu
|
||||
│ │ ├── activate.ps1
|
||||
│ │ ├── activate_this.py
|
||||
│ │ ├── deactivate.bat
|
||||
│ │ ├── dotenv.exe
|
||||
│ │ ├── pip.exe
|
||||
│ │ ├── pip3.11.exe
|
||||
│ │ ├── pip3.exe
|
||||
│ │ ├── pydoc.bat
|
||||
│ │ ├── python.exe
|
||||
│ │ └── pythonw.exe
|
||||
│ ├── include
|
||||
│ │ └── site
|
||||
│ └── pyvenv.cfg
|
||||
├── README.md
|
||||
├── backend
|
||||
│ ├── ConexionSql
|
||||
│ │ ├── Base_conexion.py
|
||||
│ │ ├── Postgres_conexion.py
|
||||
│ │ ├── __init__.py
|
||||
│ │ └── __pycache__
|
||||
│ ├── Credenciales
|
||||
│ │ ├── __init__.py
|
||||
│ │ ├── postgres_credencial.py
|
||||
│ │ └── postgres_credencial_mmr.py
|
||||
│ ├── __init__.py
|
||||
│ ├── __pycache__
|
||||
│ │ ├── __init__.cpython-311.pyc
|
||||
│ │ └── base.cpython-311.pyc
|
||||
│ └── base.py
|
||||
├── config
|
||||
│ └── .env
|
||||
├── data
|
||||
│ ├── files
|
||||
│ │ └── tree.txt
|
||||
│ ├── postgresql
|
||||
│ │ ├── docker-compose.yml
|
||||
│ │ └── pgdata
|
||||
│ └── sqlite
|
||||
├── entrypoint
|
||||
│ ├── __init__.py
|
||||
│ ├── __pycache__
|
||||
│ │ ├── __init__.cpython-311.pyc
|
||||
│ │ └── init_db.cpython-311.pyc
|
||||
│ ├── add_to_pythonpath.ps1
|
||||
│ └── init_db.py
|
||||
├── main.py
|
||||
├── pyproject.toml
|
||||
└── scripts
|
||||
├── __init_.py
|
||||
├── __pycache__
|
||||
│ └── prueba_carga_postrgesql.cpython-311.pyc
|
||||
├── datos_para_llms
|
||||
│ └── generar_tree.py
|
||||
└── prueba_carga_postrgesql.py
|
||||
@@ -0,0 +1,15 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
db:
|
||||
image: postgres:15
|
||||
container_name: postgres_container
|
||||
restart: always
|
||||
environment:
|
||||
POSTGRES_USER: postgres
|
||||
POSTGRES_PASSWORD: 7Souw9SFD5P5RYpRWuTVvFkY7zlxATcN
|
||||
POSTGRES_DB: fitz_db
|
||||
ports:
|
||||
- "5432:5432"
|
||||
volumes:
|
||||
- ./pgdata:/var/lib/postgresql/data
|
||||
Reference in New Issue
Block a user