quipus-generate 0.1.0__tar.gz → 0.1.2__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.2/LICENSE +5 -0
- {quipus_generate-0.1.0/quipus_generate.egg-info → quipus_generate-0.1.2}/PKG-INFO +3 -2
- quipus_generate-0.1.2/README.md +35 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.2}/project/cli.py +8 -8
- {quipus_generate-0.1.0 → quipus_generate-0.1.2/quipus_generate.egg-info}/PKG-INFO +3 -2
- {quipus_generate-0.1.0 → quipus_generate-0.1.2}/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.2}/project/__init__.py +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.2}/project/docker_modified.py +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.2}/project/entity_generator.py +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.2}/project/main_modified.py +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.2}/project/microservice_generator.py +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.2}/project/migration_generator.py +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.2}/project/proyect_generator.py +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.2}/project/readme_modified.py +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.2}/project/site_generator.py +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.2}/quipus_generate.egg-info/SOURCES.txt +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.2}/quipus_generate.egg-info/dependency_links.txt +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.2}/quipus_generate.egg-info/entry_points.txt +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.2}/quipus_generate.egg-info/requires.txt +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.2}/quipus_generate.egg-info/top_level.txt +0 -0
- {quipus_generate-0.1.0 → quipus_generate-0.1.2}/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.2
|
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,13 +1,13 @@
|
|
1
1
|
import argparse
|
2
2
|
|
3
|
-
from microservice_generator import create as microservice
|
4
|
-
from docker_modified import modify as docker_modify
|
5
|
-
from migration_generator import create as migration
|
6
|
-
from readme_modified import modify as readme_modify
|
7
|
-
from main_modified import modify as main_modify
|
8
|
-
from proyect_generator import create as project
|
9
|
-
from entity_generator import create as entity
|
10
|
-
from site_generator import create as site
|
3
|
+
from project.microservice_generator import create as microservice
|
4
|
+
from project.docker_modified import modify as docker_modify
|
5
|
+
from project.migration_generator import create as migration
|
6
|
+
from project.readme_modified import modify as readme_modify
|
7
|
+
from project.main_modified import modify as main_modify
|
8
|
+
from project.proyect_generator import create as project
|
9
|
+
from project.entity_generator import create as entity
|
10
|
+
from project.site_generator import create as site
|
11
11
|
|
12
12
|
def main():
|
13
13
|
parser = argparse.ArgumentParser(description="Generador de proyectos FastAPI con docker-compose y base de datos postgres.")
|
@@ -1,8 +1,9 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: quipus-generate
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.2
|
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.2",
|
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
|
{quipus_generate-0.1.0 → quipus_generate-0.1.2}/quipus_generate.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|