项目作者: Menziess

项目描述 :
Boilerplate.
高级语言: Python
项目地址: git://github.com/Menziess/flask-api.git
创建时间: 2019-02-15T11:01:04Z
项目社区:https://github.com/Menziess/flask-api

开源协议:

下载


flask-api

Build status

note The .vscode folder has deliberately added as an example.

1. Getting Started

Run the following commands in your terminal:

  1. export PIPENV_VENV_IN_PROJECT=1
  2. pip install pipenv

Once you’ve done that, you can effectively forget about pip since Pipenv essentially acts as a replacement. It also introduces two new files, the Pipfile (which is meant to replace requirements.txt) and the Pipfile.lock (which enables deterministic builds).

Run the following:

  1. make

This command prints out useful commands that can be run like this:

  1. make <command>

2. Development

Install the project by running make install, and run the project in VSCode by pressing f5.

Collaborate by creating a new branch by opening the command palette by pressing CTRL + SHIFT + P, and choosing ‘Git: Create Branch’. Give your branch a name in the following format: feature/my-awesome-feature.

When the feature is finished, create a pull request.