Metadata-Version: 2.1
Name: fastmvc
Version: 0.1.0
Summary: Rapid application development built for the cloud.
Author: MBeebe
Author-email: pyn-sol@beebe.dev
Requires-Python: >=3.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: Jinja2
Requires-Dist: authlib
Requires-Dist: fastapi
Requires-Dist: httpx
Requires-Dist: itsdangerous
Requires-Dist: passlib[bcrypt]
Requires-Dist: pyjwt
Requires-Dist: python-dotenv
Requires-Dist: python-multipart
Requires-Dist: typer[all]
Description-Content-Type: text/markdown

# FastMVC
FastMVC is a modern, fast (high-performance), web framework for building Web Applications
with the MVC structure (Model - View - Controller) and effortlessly deploying them to cloud platforms. 

- Model is interchangeable depending on the cloud platform you would like to use.
- View uses Jinja2 to create front end pages
- Controller is written using FastAPI


## FastMVC CLI
`fastmvc new [PROJECT_NAME]`  
Creates a new project. Will ask which platform to build towards (GOOGLE_APP_ENGINE, or DETA) and set up the base of the project accordingly.  

`fastmvc scaffold [MODEL_NAME] [ATTRIBUTE]:[DATA_TYPE]`  
Scaffold out a Model, View, and Controller for your object. For example:  

fastmvc scaffold item title:str description:wysiwyg amount:int available:bool  

`fastmvc auth`  
Builds an Authentication Framework to easily integrate user sign in for your application.  

`fastmvc s`  
Alias for `uvicorn main:app --reload` to run your application locally  

## Supported Cloud Platforms
__Built__
- Google App Engine (using Firestore database)
- Deta (using DetaBase)

__Coming Soon__
- AWS Elastic Beanstalk



