# flask-rest **Repository Path**: mx2913/flask-rest ## Basic Information - **Project Name**: flask-rest - **Description**: Flask 基本REST框架,支持 Docker 启动 - **Primary Language**: Python - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2020-05-10 - **Last Updated**: 2023-05-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### 3种启动方式: 1. Tornado `python manage.py --env=test` 2. Flask `python -m flask run --host=0.0.0.0 --port=80` 3. Gunicorn `gunicorn -c gunicorn.py -e FLASK_BASE_ENV="test" manager:app` 注:默认dev环境,可指定test环境。