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