Metadata-Version: 2.1
Name: bws
Version: 0.0.1
Summary: Builder Web Services
Author: Jose Angel Delgado
Author-email: esojangel@gmail.com
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: werkzeug==0.16.1
Requires-Dist: flask==1.0.4
Requires-Dist: click==8.0.1
Requires-Dist: flask-admin==1.5.8
Requires-Dist: flask-script==2.0.6
Requires-Dist: Flask-SQLAlchemy>=2.4.1
Requires-Dist: flask-babel==0.12.2
Requires-Dist: itsdangerous==2.0.1
Requires-Dist: jinja2==3.0.1
Requires-Dist: markupsafe==2.0.1
Requires-Dist: requests>=2.26.0
Requires-Dist: wtforms==2.3.3
Requires-Dist: pytz==2021.1
Requires-Dist: SQLAlchemy>=1.3.11
Requires-Dist: python-dotenv>=0.18.0
Requires-Dist: PyMySQL>=0.9.3

# MS Core

Ms Core


# Instalar / Crear un proyecto

```bash
mkdir nombre_proyecto
cd nombre_proyecto
pip install --upgrade bws
python3 -m bws.cmd.create_project --name_app=main

```


# Crear un aplicación

```bash
cd nombre_proyecto;
python3 -m bws.cmd.create_project --name=app/nombre_app

```

# Activar app


Agregar dentro de app.config.INSTALLED_APPS el path del modulo
```python
INSTALLED_APPS = [
    "...",
    "app.nombre_app"
]
```
