quipus-generate 0.1.0__tar.gz → 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- quipus_generate-0.1.1/LICENSE +5 -0
- {quipus_generate-0.1.0/quipus_generate.egg-info → quipus_generate-0.1.1}/PKG-INFO +3 -2
- quipus_generate-0.1.1/README.md +35 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.1/quipus_generate.egg-info}/PKG-INFO +3 -2
- {quipus_generate-0.1.0 → quipus_generate-0.1.1}/setup.py +4 -2
- quipus_generate-0.1.0/LICENSE +0 -0
- quipus_generate-0.1.0/README.md +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.1}/project/__init__.py +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.1}/project/cli.py +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.1}/project/docker_modified.py +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.1}/project/entity_generator.py +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.1}/project/main_modified.py +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.1}/project/microservice_generator.py +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.1}/project/migration_generator.py +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.1}/project/proyect_generator.py +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.1}/project/readme_modified.py +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.1}/project/site_generator.py +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.1}/quipus_generate.egg-info/SOURCES.txt +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.1}/quipus_generate.egg-info/dependency_links.txt +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.1}/quipus_generate.egg-info/entry_points.txt +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.1}/quipus_generate.egg-info/requires.txt +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.1}/quipus_generate.egg-info/top_level.txt +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.1}/setup.cfg +0 -0
@@ -1,8 +1,9 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: quipus-generate
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.1
|
4
4
|
Summary: Generador de proyectos FastAPI con arquitectura Hexagonal.
|
5
|
-
Author: Juan Corrales
|
5
|
+
Author: Juan David Corrales Saldarriaga
|
6
6
|
Author-email: sistemas@amauttasistems.com
|
7
|
+
License: Proprietary
|
7
8
|
License-File: LICENSE
|
8
9
|
Requires-Dist: inflection
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# 🚀 quipus-generate
|
2
|
+
|
3
|
+
**quipus-generate** es una base de proyecto en Python que implementa una arquitectura **hexagonal** (puertos y adaptadores) con **FastAPI**, **PostgreSQL**, **SQLAlchemy** y **Alembic**. Está pensado para escalar y adaptarse a microservicios, con migraciones gestionadas por servicio.
|
4
|
+
|
5
|
+
---
|
6
|
+
|
7
|
+
## 📦 Características
|
8
|
+
|
9
|
+
- ✅ Arquitectura hexagonal (Domain Driven Design)
|
10
|
+
- 🔧 CRUD de entidades
|
11
|
+
- 🛢️ PostgreSQL como base de datos
|
12
|
+
- 🧱 SQLAlchemy como ORM
|
13
|
+
- 📜 Alembic para control de migraciones
|
14
|
+
- 🐳 Soporte para Docker y Docker Compose
|
15
|
+
- ⚙️ Configuración por entorno
|
16
|
+
|
17
|
+
---
|
18
|
+
|
19
|
+
# Comandos cli
|
20
|
+
|
21
|
+
## 🐳 Crear proyecto
|
22
|
+
```
|
23
|
+
quipus-generate init <nombre-del-proyecto>
|
24
|
+
```
|
25
|
+
|
26
|
+
## 🧩 Crear microservicio
|
27
|
+
```
|
28
|
+
quipus-generate microservice <microservicio> <entidad>
|
29
|
+
```
|
30
|
+
|
31
|
+
## 🐍 Crear entidad
|
32
|
+
```
|
33
|
+
quipus-generate entity <entidad>
|
34
|
+
```
|
35
|
+
|
@@ -1,8 +1,9 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: quipus-generate
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.1
|
4
4
|
Summary: Generador de proyectos FastAPI con arquitectura Hexagonal.
|
5
|
-
Author: Juan Corrales
|
5
|
+
Author: Juan David Corrales Saldarriaga
|
6
6
|
Author-email: sistemas@amauttasistems.com
|
7
|
+
License: Proprietary
|
7
8
|
License-File: LICENSE
|
8
9
|
Requires-Dist: inflection
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name="quipus-generate",
|
5
|
-
version="0.1.
|
5
|
+
version="0.1.1",
|
6
6
|
packages=find_packages(),
|
7
7
|
entry_points={
|
8
8
|
"console_scripts": [
|
@@ -13,6 +13,8 @@ setup(
|
|
13
13
|
"inflection"
|
14
14
|
],
|
15
15
|
description="Generador de proyectos FastAPI con arquitectura Hexagonal.",
|
16
|
-
author="Juan Corrales",
|
16
|
+
author="Juan David Corrales Saldarriaga",
|
17
17
|
author_email="sistemas@amauttasistems.com",
|
18
|
+
license="Proprietary",
|
19
|
+
include_package_data=True,
|
18
20
|
)
|
quipus_generate-0.1.0/LICENSE
DELETED
File without changes
|
quipus_generate-0.1.0/README.md
DELETED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{quipus_generate-0.1.0 → quipus_generate-0.1.1}/quipus_generate.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|