Metadata-Version: 2.1
Name: bws-boa
Version: 0.0.4a5
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.1.1
Requires-Dist: click>=8.0.1
Requires-Dist: flask-admin>=1.5.8
Requires-Dist: Flask-SQLAlchemy>=2.4.1
Requires-Dist: Flask-Migrate==2.5.2
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

echo "export PATH=\$PATH:$HOME/.local/bin" >> ~/.bashrc

pip install -U bws-boa


# crear proyecto 

boa init .

```


# Crear un aplicación

```bash
boa add-app <name>

```

# Activar app


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