# flask_projects_templates **Repository Path**: pankla/flask_projects_templates ## Basic Information - **Project Name**: flask_projects_templates - **Description**: 一个用于Flask项目的快速模板,可以快速搭建一个初始开发环境 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-01-24 - **Last Updated**: 2022-06-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # README a template for init project fastly ## command Makefile ## deploy and dir ### 配置文件示例 `docs/deploy` ### 创建网络 (总体配置指定网络时需要) ```bash docker network create --driver bridge --gateway 172.27.0.1 --subnet 172.27.0.0/16 template_net ``` ### 配置文件 ```text api/config.py 本机开发使用 api/docker-entrypoint.sh 启动脚本 conf/mysql/my.cnf conf/config.py 全局配置文件映射 ``` ### 总体文件夹 ```text . ├── conf │ ├── config.py │ ├── mysql_conf │ │   └── my.cnf │ └── redis_conf │ ├── redis.conf │ └── user.acl ├── data ├── docker-compose.yml ├── logs └── api ```