积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(11)Python(11)Django(6)Flask(2)

语言

全部英语(8)中文(简体)(3)

格式

全部PDF文档 PDF(7)其他文档 其他(4)
 
本次搜索耗时 0.334 秒,为您找到相关结果约 11 个.
  • 全部
  • 后端开发
  • Python
  • Django
  • Flask
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • epub文档 Flask Documentation (1.1.x)

    Dispatching Implementing API Exceptions Using URL Processors Deploying with Setuptools Deploying with Fabric Using SQLite 3 with Flask SQLAlchemy in Flask Uploading Files Caching View Decorators Form Validation sourcing that activates a virtualenv and exports the development configuration for you. Use a tool like fabric [https://www.fabfile.org/] in production to push code and configurations separately to the production production server(s). For some details about how to do that, head over to the Deploying with Fabric pattern. Instance Folders Changelog Flask 0.8 introduces instance folders. Flask for a long time made it
    0 码力 | 428 页 | 895.98 KB | 1 年前
    3
  • pdf文档 Python3 基础教程 - 廖雪峰

    正确的部署方式是使用工具配合脚本完成自动化部署。Fabric 就是一个 自动化部署工具。由于 Fabric 是用 Python 2.x 开发的,所以,部署脚本 要用 Python 2.7 来编写,本机还必须安装 Python 2.7 版本。 要用 Fabric 部署,需要在本机(是开发机器,不是 Linux 服务器)安装 Fabric: $ easy_install fabric Linux 服务器上不需要安装 服务器上不需要安装 Fabric,Fabric 使用 SSH 直接登录服务器并 执行部署命令。 下一步是编写部署脚本。Fabric 的部署脚本叫 fabfile.py,我们把它放 到 awesome-python-webapp 的目录下,与 www 目录平级: awesome-python-webapp/ +- fabfile.py +- www/ +- ... Fabric 的脚本编写很简单,首先导入 的脚本编写很简单,首先导入 Fabric 的 API,设置部署时的变量: # fabfile.py import os, re from datetime import datetime # 导入 Fabric API: from fabric.api import * # 服务器登录用户名: env.user = 'michael' # sudo 用户为 root: env.sudo_user
    0 码力 | 531 页 | 5.15 MB | 1 年前
    3
  • pdf文档 Flask Documentation (1.1.x)

    Use a tool like fabric in production to push code and configurations separately to the production server(s). For some details about how to do that, head over to the Deploying with Fabric pattern. 1.11 automated deployment scenarios. If you want to fully automate the process, also read the Deploying with Fabric chapter. Basic Setup Script Because you have Flask installed, you have setuptools available on 122 Chapter 1. User’s Guide Flask Documentation (1.1.x), Release 1.1.4 1.21.7 Deploying with Fabric Fabric is a tool for Python similar to Makefiles but with the ability to execute commands on a remote
    0 码力 | 291 页 | 1.25 MB | 1 年前
    3
  • pdf文档 2_FPGA助力Python加速计算_陈志勇

    Control Functional Safety Configuration & Security Unit Anti-Tamper & Trust Industry Standards Fabric Acceleration Customizable Engines High Speed Connectivity Video Codec 8K4K (15fps) 4K2K (60fps)
    0 码力 | 33 页 | 8.99 MB | 1 年前
    3
  • pdf文档 FPGA助力Python加速计算 陈志勇

    Control Functional Safety Configuration & Security Unit Anti-Tamper & Trust Industry Standards Fabric Acceleration Customizable Engines High Speed Connectivity Video Codec 8K4K (15fps) 4K2K (60fps)
    0 码力 | 34 页 | 4.19 MB | 1 年前
    3
  • pdf文档 Django 1.8.x Documentation

    but one option that many Django developers enjoy is Fabric. Below, and in the following sections, we’ll show off a few example fabfiles (i.e. Fabric scripts) that automate these file deployment options options. The syntax of a fabfile is fairly straightforward but won’t be covered here; consult Fabric’s documentation, for a complete explanation of the syntax. So, a fabfile to deploy static files to a couple like: 4.16. Deploying static files 589 Django Documentation, Release 1.8.20.dev20180306181007 from fabric.api import * # Hosts to deploy onto env.hosts = ['www1.example.com', 'www2.example.com'] # Where
    0 码力 | 1685 页 | 6.01 MB | 1 年前
    3
  • epub文档 Django 1.8.x Documentation

    but one option that many Django developers enjoy is Fabric. Below, and in the following sections, we’ll show off a few example fabfiles (i.e. Fabric scripts) that automate these file deployment options covered here; consult Fabric’s documentation, for a complete explanation of the syntax. So, a fabfile to deploy static files to a couple of web servers might look something like: from fabric.api import * # bits of static files that have changed. Here’s how this might look in a fabfile: from fabric.api import * from fabric.contrib import project # Where the static files get collected locally. Your STATIC_ROOT
    0 码力 | 2454 页 | 2.85 MB | 1 年前
    3
  • pdf文档 Django 1.11.x Documentation

    but one option that many Django developers enjoy is Fabric. Below, and in the following sections, we’ll show off a few example fabfiles (i.e. Fabric scripts) that automate these file deployment options covered here; consult Fabric’s documentation, for a complete explanation of the syntax. So, a fabfile to deploy static files to a couple of web servers might look something like: from fabric.api import * # bits of static files that have changed. Here’s how this might look in a fabfile: from fabric.api import * from fabric.contrib import project # Where the static files get collected locally. Your STATIC_ROOT
    0 码力 | 1878 页 | 6.40 MB | 1 年前
    3
  • pdf文档 Django 1.10.x Documentation

    but one option that many Django developers enjoy is Fabric. Below, and in the following sections, we’ll show off a few example fabfiles (i.e. Fabric scripts) that automate these file deployment options covered here; consult Fabric’s documentation, for a complete explanation of the syntax. So, a fabfile to deploy static files to a couple of web servers might look something like: from fabric.api import * # bits of static files that have changed. Here’s how this might look in a fabfile: from fabric.api import * from fabric.contrib import project # Where the static files get collected locally. Your STATIC_ROOT
    0 码力 | 1817 页 | 6.19 MB | 1 年前
    3
  • epub文档 Django 1.11.x Documentation

    but one option that many Django developers enjoy is Fabric. Below, and in the following sections, we’ll show off a few example fabfiles (i.e. Fabric scripts) that automate these file deployment options covered here; consult Fabric’s documentation, for a complete explanation of the syntax. So, a fabfile to deploy static files to a couple of web servers might look something like: from fabric.api import * # bits of static files that have changed. Here’s how this might look in a fabfile: from fabric.api import * from fabric.contrib import project # Where the static files get collected locally. Your STATIC_ROOT
    0 码力 | 2747 页 | 2.67 MB | 1 年前
    3
共 11 条
  • 1
  • 2
前往
页
相关搜索词
FlaskDocumentation1.1Python3基础教程基础教程雪峰FPGA助力Python加速计算陈志勇Django1.81.111.10
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩