# minifp **Repository Path**: ilighting/minifp ## Basic Information - **Project Name**: minifp - **Description**: flask project 微服务架构。fabric热部署,docker交付。 - **Primary Language**: Python - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 0 - **Created**: 2020-12-16 - **Last Updated**: 2022-03-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Flask Skeleton Project ====================== # Description Place all your apis in `app` directory. Add config to object in `config.config`. # Usage Run in dev mode ``` python run.sh ``` Run in production mode ``` gunicorn -b 0.0.0.0:80 server:app ``` Run in Docker Use `Dockerfile` to build docker image and run. ``` docker build -t : . docker run -d -p 80:80 : ```