quipus-generate 0.1.7__tar.gz → 0.1.9__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.7 → quipus_generate-0.1.9}/LICENSE +0 -0
- {quipus_generate-0.1.7 → quipus_generate-0.1.9}/PKG-INFO +1 -1
- {quipus_generate-0.1.7 → quipus_generate-0.1.9}/README.md +0 -0
- {quipus_generate-0.1.7 → quipus_generate-0.1.9}/amautta_project/__init__.py +0 -0
- {quipus_generate-0.1.7 → quipus_generate-0.1.9}/amautta_project/cli.py +11 -10
- {quipus_generate-0.1.7 → quipus_generate-0.1.9}/amautta_project/docker_modified.py +0 -0
- {quipus_generate-0.1.7 → quipus_generate-0.1.9}/amautta_project/entity_generator.py +0 -0
- {quipus_generate-0.1.7 → quipus_generate-0.1.9}/amautta_project/microservice_generator.py +3 -1
- {quipus_generate-0.1.7 → quipus_generate-0.1.9}/quipus_generate.egg-info/PKG-INFO +1 -1
- {quipus_generate-0.1.7 → quipus_generate-0.1.9}/setup.py +1 -1
- {quipus_generate-0.1.7 → quipus_generate-0.1.9}/amautta_project/git_generator.py +0 -0
- {quipus_generate-0.1.7 → quipus_generate-0.1.9}/amautta_project/main_modified.py +0 -0
- {quipus_generate-0.1.7 → quipus_generate-0.1.9}/amautta_project/migration_generator.py +0 -0
- {quipus_generate-0.1.7 → quipus_generate-0.1.9}/amautta_project/proyect_generator.py +0 -0
- {quipus_generate-0.1.7 → quipus_generate-0.1.9}/amautta_project/readme_modified.py +0 -0
- {quipus_generate-0.1.7 → quipus_generate-0.1.9}/amautta_project/site_generator.py +0 -0
- {quipus_generate-0.1.7 → quipus_generate-0.1.9}/quipus_generate.egg-info/SOURCES.txt +0 -0
- {quipus_generate-0.1.7 → quipus_generate-0.1.9}/quipus_generate.egg-info/dependency_links.txt +0 -0
- {quipus_generate-0.1.7 → quipus_generate-0.1.9}/quipus_generate.egg-info/entry_points.txt +0 -0
- {quipus_generate-0.1.7 → quipus_generate-0.1.9}/quipus_generate.egg-info/requires.txt +0 -0
- {quipus_generate-0.1.7 → quipus_generate-0.1.9}/quipus_generate.egg-info/top_level.txt +0 -0
- {quipus_generate-0.1.7 → quipus_generate-0.1.9}/setup.cfg +0 -0
File without changes
|
File without changes
|
File without changes
|
@@ -1,14 +1,15 @@
|
|
1
1
|
import argparse
|
2
|
-
|
3
|
-
|
4
|
-
from
|
5
|
-
from
|
6
|
-
from
|
7
|
-
from
|
8
|
-
from
|
9
|
-
from
|
10
|
-
from
|
11
|
-
from
|
2
|
+
import os
|
3
|
+
|
4
|
+
from microservice_generator import create as microservice
|
5
|
+
from docker_modified import modify as docker_modify
|
6
|
+
from migration_generator import create as migration
|
7
|
+
from readme_modified import modify as readme_modify
|
8
|
+
from main_modified import modify as main_modify
|
9
|
+
from proyect_generator import create as project
|
10
|
+
from git_generator import create as git_create
|
11
|
+
from entity_generator import create as entity
|
12
|
+
from site_generator import create as site
|
12
13
|
|
13
14
|
def main():
|
14
15
|
parser = argparse.ArgumentParser(description="Generador de proyectos FastAPI con docker-compose y base de datos postgres.")
|
File without changes
|
File without changes
|
@@ -3,8 +3,10 @@ import os
|
|
3
3
|
|
4
4
|
def create(name):
|
5
5
|
|
6
|
+
print("Ubicación absoluta:", os.path.abspath(__file__))
|
7
|
+
|
6
8
|
# si no esta ubicado en la carpeta del proyecto que debe contemerr un docker-compose.yml para toda la ejecucion
|
7
|
-
if not os.path.isfile("docker-compose.yml"):
|
9
|
+
if not os.path.isfile("./docker-compose.yml"):
|
8
10
|
print("ℹ️ No se encuentra en la carpeta del proyecto.")
|
9
11
|
sys.exit()
|
10
12
|
|
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.7 → quipus_generate-0.1.9}/quipus_generate.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|