# FastAPI Best Architecture [![GitHub](https://img.shields.io/github/license/fastapi-practices/fastapi_best_architecture)](https://github.com/fastapi-practices/fastapi_best_architecture/blob/master/LICENSE) [![Static Badge](https://img.shields.io/badge/python-3.10%2B-blue)](https://www.python.org/downloads/) > [!TIP] > You are viewing the pydantic-v1 branch, which is locked and no longer provides updates and fixes English | [简体中文](./README.zh-CN.md) FastAPI framework based on the front-end and back-end separation of the middle and back-end solutions, follow the [pseudo three-tier architecture](#pseudo-three-tier-architecture) design, support for **python3.10** and above versions Its purpose is to allow you to use it directly as the infrastructure of your new project, this repository as a template library open to any person or enterprise can be used for free! **Continuously updated and maintained** ## Pseudo three-tier architecture The mvc architecture is a common design pattern in python web, but the three-tier architecture is even more fascinating. In python web development, there is no common standard for the concept of three-tier architecture, so we'll call it a pseudo three-tier architecture here | workflow | java | fastapi_best_architecture | |----------------|----------------|---------------------------| | view | controller | api | | data transmit | dto | schema | | business logic | service + impl | service | | data access | dao / mapper | crud | | model | model / entity | model | ## Online preview Unfortunately, we don't have the funds to provide an online preview, you can deploy by checking out [local-development](#local-development), or directly using [Docker](#docker-deploy) to deploy, or at [fastapi_best_architecture_ui](https://github.com/fastapi-practices/fastapi_best_architecture_ui) See a preview of some of the screenshots ## Features - [x] Design with FastAPI PEP 593 Annotated Parameters - [x] Global asynchronous design with async/await + asgiref - [x] Follows Restful API specification - [x] Global SQLAlchemy 2.0 syntax - [x] Casbin RBAC access control model - [x] Celery asynchronous tasks - [x] JWT middleware whitelist authentication - [x] Global customizable time zone time - [x] Docker / Docker-compose deployment - [x] Pytest Unit Testing ## Built-in features 1. [x] User management: system user role management, permission assignment 2. [x] Department Management: Configure the system organization (company, department, group...) 3. [x] Menu Management: Configuration of system menus, user menus, button privilege identification 4. [x] Role Management: Assign role menu privileges, assign role routing privileges 5. [x] Dictionary Management: Maintain common fixed data or parameters within the system. 6. [x] Operation Logs: logging and querying of normal and abnormal system operations. 7. [x] Login Authentication: graphical authentication code background authentication login 8. [x] Login Logs: Logging and querying of normal and abnormal user logins 9. [x] Service Monitoring: server hardware device information and status 10. [x] Scheduled tasks: automated tasks, asynchronous tasks, and function invocation are supported 11. [x] Interface Documentation: Automatically generate online interactive API interface documentation. ## Local development * Python: 3.10+ * Mysql: 8.0+ * Redis: The latest stable version is recommended * Nodejs: 14.0+ ### BackEnd 1. Install dependencies ```shell pip install -r requirements.txt ``` 2. Create a database `fba`, choose utf8mb4 encoding 3. Install and start Redis 4. Create a `.env` file in the `backend/app/` directory ```shell cd backend/app/ touch .env ``` 5. Copy `.env.example` to `.env` ```shell cp .env.example .env ``` 6. Database migration [alembic](https://alembic.sqlalchemy.org/en/latest/tutorial.html) ```shell cd backend/app/ # Generate migration file alembic revision --autogenerate # Execute the migration alembic upgrade head ``` 7. Start celery worker and beat ```shell celery -A tasks worker --loglevel=INFO # Optional, if you don't need to use the scheduled task celery -A tasks beat --loglevel=INFO ``` 8. Modify the configuration file as needed 9. Execute the `backend/app/main.py` file to start the service 10. Browser access: http://127.0.0.1:8000/api/v1/docs --- ### Front Go to [fastapi_best_architecture_ui](https://github.com/fastapi-practices/fastapi_best_architecture_ui) for details ### Docker deploy > [!WARNING] > Default port conflict:8000,3306,6379,5672 > > As a best practice, shut down on-premises services before deployment:mysql,redis,rabbitmq... 1. Go to the directory where the ``docker-compose.yml`` file is located and create the environment variable file ``.env`` ```shell cd deploy/docker-compose/ cp .env.server ../../backend/app/.env # This command is optional cp .env.docker .env ``` 2. Modify the configuration file as needed 3. Execute the one-click boot command ```shell docker-compose up -d --build ``` 4. Wait for the command to complete automatically 5. Visit the browser: http://127.0.0.1:8000/api/v1/docs ## Test data Initialize the test data using the `backend/sql/init_test_data.sql` file ## Development process For reference only ### BackEnd 1. Define the database model (model) and remember to perform database migration for each change 2. Define the data validation model (schema) 3. Define routes (router) and views (api) 4. Define the business logic (service) 5. Write database operations (crud) ### Front Go to [fastapi_best_architecture_ui](https://github.com/fastapi-practices/fastapi_best_architecture_ui) for details ## Test Execute unittests via pytest 1. Create the test database `fba_test`, select utf8mb4 encoding 2. Using `backend/sql/create_tables.sql` file to create database tables 3. Initialize the test data using the `backend/sql/init_pytest_data.sql` file 4. Enter the app directory ```shell cd backend/app/ ``` 5. Execute the test command ```shell pytest -vs --disable-warnings ``` ## Contributors ## Special thanks - [FastAPI](https://fastapi.tiangolo.com/) - [Pydantic](https://docs.pydantic.dev/latest/) - [SQLAlchemy](https://docs.sqlalchemy.org/en/20/) - [Casbin](https://casbin.org/zh/) - [Ruff](https://beta.ruff.rs/docs/) - ... ## 互动 有且仅有当前一个频道,请注意辨别真伪
直链跳转
Telegram
## Sponsor us If this program has helped you, you can sponsor us with some coffee beans :coffee:
WeChat Alipay 0x40D5e2304b452256afD9CE2d3d5531dc8d293138
WeChat Pay Ali Pay ERC20
## License This project is licensed under the terms of the [MIT](https://github.com/fastapi-practices/fastapi_best_architecture/blob/master/LICENSE) license