 Flask Documentation (1.1.x)Installation files telling Python how to install your project. Version control config, such as git [https://git-scm.com/]. You should make a habit of using some type of version control for all your projects files based on the editor you use. In general, ignore files that you didn’t write. For example, with git: .gitignore venv/ *.pyc __pycache__/ instance/ .pytest_cache/ .coverage htmlcov/ dist/ build/ need to also add --virtualenv /path/to/virtual/environment. You might also need to add --plugin python or --plugin python3 depending on which python version you use for your project. Configuring nginx0 码力 | 428 页 | 895.98 KB | 1 年前3 Flask Documentation (1.1.x)Installation files telling Python how to install your project. Version control config, such as git [https://git-scm.com/]. You should make a habit of using some type of version control for all your projects files based on the editor you use. In general, ignore files that you didn’t write. For example, with git: .gitignore venv/ *.pyc __pycache__/ instance/ .pytest_cache/ .coverage htmlcov/ dist/ build/ need to also add --virtualenv /path/to/virtual/environment. You might also need to add --plugin python or --plugin python3 depending on which python version you use for your project. Configuring nginx0 码力 | 428 页 | 895.98 KB | 1 年前3
 Flask Documentation (1.1.x)Installation files telling Python how to install your project. • Version control config, such as git. You should make a habit of using some type of version control for all your projects, no matter the files based on the editor you use. In general, ignore files that you didn’t write. For example, with git: 22 Chapter 1. User’s Guide Flask Documentation (1.1.x), Release 1.1.4 Listing 2: .gitignore venv/ need to also add --virtualenv /path/to/virtual/environment. You might also need to add --plugin python or --plugin python3 depending on which python version you use for your project. Configuring nginx0 码力 | 291 页 | 1.25 MB | 1 年前3 Flask Documentation (1.1.x)Installation files telling Python how to install your project. • Version control config, such as git. You should make a habit of using some type of version control for all your projects, no matter the files based on the editor you use. In general, ignore files that you didn’t write. For example, with git: 22 Chapter 1. User’s Guide Flask Documentation (1.1.x), Release 1.1.4 Listing 2: .gitignore venv/ need to also add --virtualenv /path/to/virtual/environment. You might also need to add --plugin python or --plugin python3 depending on which python version you use for your project. Configuring nginx0 码力 | 291 页 | 1.25 MB | 1 年前3
 Flask入门教程实现的终端模拟器) 来代 替系统自带的 cmd.exe,或是使用安装 Git for Windows 后(下一节)附带的 Git Bash。cmder 集成了 Git Bash,支持一些在 Linux 或 macOS 下才能使用的命令 (程序),比如 ls、cat、nano、ssh 等,这些命令我们在后面会用到。 使用 Git Git 是一个流行的版本控制工具,我们可以用它来记录程序源码和文件的变动情 如果你还不熟悉 Git 也没关系,可以先按照书中的命令去做,有时间再去了解原 理。现在要做的第一件事就是在你的电脑上安装 Git (可以执行 git --help 命 令检查是否已经安装,没有提示“命令未找到(Command not found)”则表示已安 装)。 安装后可以在命令行先使用使用下面的命令查看版本,没有报错则表示已正确安 装: $ git --version git version 为了让 Git 知道你是谁,以便在提交代码到版本仓库的时候进行记录,使用下面的 命令设置你的信息: $ git config --global user.name "Grey Li" # 替换成你的名字 $ git config --global user.email "withlihui@gmail.com" # 替换成 你的邮箱地址 现在为我们的项目文件夹创建一个 Git 仓库,这会在我们的项目根目录创建一个0 码力 | 127 页 | 7.62 MB | 1 年前3 Flask入门教程实现的终端模拟器) 来代 替系统自带的 cmd.exe,或是使用安装 Git for Windows 后(下一节)附带的 Git Bash。cmder 集成了 Git Bash,支持一些在 Linux 或 macOS 下才能使用的命令 (程序),比如 ls、cat、nano、ssh 等,这些命令我们在后面会用到。 使用 Git Git 是一个流行的版本控制工具,我们可以用它来记录程序源码和文件的变动情 如果你还不熟悉 Git 也没关系,可以先按照书中的命令去做,有时间再去了解原 理。现在要做的第一件事就是在你的电脑上安装 Git (可以执行 git --help 命 令检查是否已经安装,没有提示“命令未找到(Command not found)”则表示已安 装)。 安装后可以在命令行先使用使用下面的命令查看版本,没有报错则表示已正确安 装: $ git --version git version 为了让 Git 知道你是谁,以便在提交代码到版本仓库的时候进行记录,使用下面的 命令设置你的信息: $ git config --global user.name "Grey Li" # 替换成你的名字 $ git config --global user.email "withlihui@gmail.com" # 替换成 你的邮箱地址 现在为我们的项目文件夹创建一个 Git 仓库,这会在我们的项目根目录创建一个0 码力 | 127 页 | 7.62 MB | 1 年前3
 Flask-RESTful Documentation Release 0.3.10its page at GitHub [https://github.com/flask-restful/flask-restful]. git clone https://github.com/flask-restful/flask-restful.git cd flask-restful python setup.py develop Flask-RESTful has the following0 码力 | 42 页 | 84.60 KB | 1 年前3 Flask-RESTful Documentation Release 0.3.10its page at GitHub [https://github.com/flask-restful/flask-restful]. git clone https://github.com/flask-restful/flask-restful.git cd flask-restful python setup.py develop Flask-RESTful has the following0 码力 | 42 页 | 84.60 KB | 1 年前3
 Flask-RESTful Documentation
Release 0.3.10flask-restful The development version can be downloaded from its page at GitHub. git clone https://github.com/flask-restful/flask-restful.git cd flask-restful python setup.py develop Flask-RESTful has the following0 码力 | 39 页 | 212.29 KB | 1 年前3 Flask-RESTful Documentation
Release 0.3.10flask-restful The development version can be downloaded from its page at GitHub. git clone https://github.com/flask-restful/flask-restful.git cd flask-restful python setup.py develop Flask-RESTful has the following0 码力 | 39 页 | 212.29 KB | 1 年前3
 Flask-RESTful Documentation
Release 0.3.6flask-restful The development version can be downloaded from its page at GitHub. git clone https://github.com/flask-restful/flask-restful.git cd flask-restful python setup.py develop Flask-RESTful has the following0 码力 | 46 页 | 245.60 KB | 1 年前3 Flask-RESTful Documentation
Release 0.3.6flask-restful The development version can be downloaded from its page at GitHub. git clone https://github.com/flask-restful/flask-restful.git cd flask-restful python setup.py develop Flask-RESTful has the following0 码力 | 46 页 | 245.60 KB | 1 年前3
 Flask-RESTful Documentation Release 0.3.6its page at GitHub [https://github.com/flask-restful/flask-restful]. git clone https://github.com/flask-restful/flask-restful.git cd flask-restful python setup.py develop Flask-RESTful has the following0 码力 | 49 页 | 91.90 KB | 1 年前3 Flask-RESTful Documentation Release 0.3.6its page at GitHub [https://github.com/flask-restful/flask-restful]. git clone https://github.com/flask-restful/flask-restful.git cd flask-restful python setup.py develop Flask-RESTful has the following0 码力 | 49 页 | 91.90 KB | 1 年前3
 Flask-RESTful Documentation
Release 0.3.7flask-restful The development version can be downloaded from its page at GitHub. git clone https://github.com/flask-restful/flask-restful.git cd flask-restful python setup.py develop Flask-RESTful has the following0 码力 | 50 页 | 253.09 KB | 1 年前3 Flask-RESTful Documentation
Release 0.3.7flask-restful The development version can be downloaded from its page at GitHub. git clone https://github.com/flask-restful/flask-restful.git cd flask-restful python setup.py develop Flask-RESTful has the following0 码力 | 50 页 | 253.09 KB | 1 年前3
 Flask-RESTful Documentation
Release 0.3.8flask-restful The development version can be downloaded from its page at GitHub. git clone https://github.com/flask-restful/flask-restful.git cd flask-restful python setup.py develop Flask-RESTful has the following0 码力 | 50 页 | 253.64 KB | 1 年前3 Flask-RESTful Documentation
Release 0.3.8flask-restful The development version can be downloaded from its page at GitHub. git clone https://github.com/flask-restful/flask-restful.git cd flask-restful python setup.py develop Flask-RESTful has the following0 码力 | 50 页 | 253.64 KB | 1 年前3
 Flask-RESTful Documentation Release 0.3.8its page at GitHub [https://github.com/flask-restful/flask-restful]. git clone https://github.com/flask-restful/flask-restful.git cd flask-restful python setup.py develop Flask-RESTful has the following0 码力 | 55 页 | 93.30 KB | 1 年前3 Flask-RESTful Documentation Release 0.3.8its page at GitHub [https://github.com/flask-restful/flask-restful]. git clone https://github.com/flask-restful/flask-restful.git cd flask-restful python setup.py develop Flask-RESTful has the following0 码力 | 55 页 | 93.30 KB | 1 年前3
共 11 条
- 1
- 2














