Django on AppEngine Documentation
|
|
|
- Pierce Sims
- 9 years ago
- Views:
Transcription
1 Django on AppEngine Documentation Release Sebastian Pawluś October 18, 2014
2
3 Contents 1 Installation Download latest Google AppEngine SDK Install Django Create Django project Install django-rocket-engine Register application on Google AppEngine Create CloudSQL database Configuration Requirements Google AppEngine SDK libraries: Python requirements.txt Blob Storage 11 4 Commands appengine on_appengine Settings DATABASES DEFAULT_FILE_STORAGE APPENGINE_PRE_UPDATE APPENGINE_POST_UPDATE i
4 ii
5 Welcome to the documentation for django-rocket-engine - Django on AppEngine Project is a helper library with main goal to help setup correct Django development environment for Google AppEngine services. Supports: basic support for pip style requirements, support for virtualenv environments, pre/post deployment hooks, seamless BlobStorage backend. The project is still in the experimental stage, being more like proof-of-concept. Source code can be found on github. This project was inspired by the work of Waldemar Kornewald and Thomas Wanschik from All Buttons Pressed, some ideas where moved from djangoappengine project. Example application Contents 1
6 2 Contents
7 CHAPTER 1 Installation 1.1 Download latest Google AppEngine SDK Get the latest version of SDK, if you are using Linux please make sure that SDK is available on your PATH (how?). 1.2 Install Django Install Django framework. There are many ways of doing that (suggestion is to use virtualenv along with virtualenvwrapper and pip) $ pip install django==1.3.1 Note: Version is latest supported by SDK 1.3 Create Django project Create a new, awesome Django project. Right now it s even more awesome because this project will use AppEngine: $ django-admin.py startproject my_awesome_project 1.4 Install django-rocket-engine Install latest version of django-rocket-engine, with pip $ pip install django-rocket-engine 1.5 Register application on Google AppEngine Register new application on Google AppEngine site. 3
8 1.6 Create CloudSQL database Create a CloudSQL database instance using Google Api Console, add application instance name from previous step in Authorized applications. Using SQL Prompt tab create a database inside your CloudSQL instance. CREATE DATABASE database_name; 1.7 Configuration Google AppEngine requires applications to have an config in app.yaml file, which is responsible for basic description, and how to manage the application. Create app.yaml inside project directory. Example of app.yaml for project. # app.yaml application: unique_appengine_appspot_id version: 1 runtime: python27 api_version: 1 threadsafe: true handlers: - url: /.* script: rocket_engine.wsgi libraries: - name: django version: 1.3 env_variables: DJANGO_SETTINGS_MODULE: settings Things that need to be done in settings.py are presented in code snippet below: # settings.py from rocket_engine import on_appengine... # django-rocket-engine as every Django application # needs to be added to settings.py file in INSTALLED_APPS section: INSTALLED_APPS = ( # other django applications here #... ) rocket_engine, # remove project name from ROOT_URLCONF. # AppEngine doesn t treat project as a module # like normal Django application does. ROOT_URLCONF = urls # to use different databases during # development process and on production. if on_appengine: DATABASES = { 4 Chapter 1. Installation
9 default : { ENGINE : rocket_engine.db.backends.cloudsql, INSTANCE : instance:name, NAME : database_name, else: DATABASES = { default : { ENGINE : django.db.backends.sqlite3, NAME : development.db # disable debugging on production DEBUG = not on_appengine Note: Instead of using sqlite3 backend your are able to use MySQL backend. This should also be your choice for serious applications. That s just about it. Application is ready to run: $ python manage.py syncdb $ python manage.py runserver and deploy: $ python manage.py on_appengine syncdb $ python manage.py appengine update --oauth2 Have fun! Next Steps Requirements Google AppEngine SDK libraries: Google AppEngine SDK comes with sets of libraries. If there is a need to use one of them, you should append the library in your libraries seduction in app.yaml file rather to add them with use of requirements.txt file (explained below). Example of how to enable lxml in application. # app.yaml #... libraries: - name: django version: name: lxml version: Configuration 5
10 Python requirements.txt To bring AppEngine development to more pythonic status. The library comes with basic support for python packaging system, You can keep list of required packages in requirements.txt file in your project root directory. Example of requirements.txt for simple project may contains packages like: django-tastypie django-taggit>=0.4 These packages will be downloaded and installed during deployment stage (manage.py appengine update). Requirements file may also contain references to packages being under source control: git+git://github.com/alex/django-taggit.git Note: There is no need to add django or django-rocket-engine to your requirements.txt file. Those requirements are already satisfied. Note: Editable requirements (prepended with -e option) are not supported. More about using requirements file might be read here. Commands appengine Google AppEngine comes with appcfg.py to cover all functionality of the deployment process. This command is currently now wrapped by appengine django command and comes with some benefits of configuration hooks: python manage.py appengine update Calling this command will send your code on remote AppEngine instance. This option comes with support of pre and post update hooks see Settings. on_appengine To perform an operation on Google AppEngine from your local machine use: python manage.py on_appengine syncdb This command will perform a sycndb operation on your remote instance. Google AppEngine doesn t come with any kind of remote access mechanism (like SSH, Talent), this command helps to overcome this inconvenience. Any command invoked this way will be called to use of remote storage instead of your local one. This command only affects storage. Other useful examples might be. remote python shell: python manage.py on_appengine shell remote CloudSQL shell: python manage.py on_appengine dbshell migrate database if South is being used: 6 Chapter 1. Installation
11 python manage.py on_appengine migrate Blob Storage To enable BlobStorage system as a Django storage, modify your code with elements presented below. # urls.py urlpatterns = patterns(... url(r ^media/(?p<filename>.*)/$, rocket_engine.views.file_serve ), ) # settings.py DEFAULT_FILE_STORAGE = rocket_engine.storage.blobstorage Settings DATABASES django-rocket-engine comes with pre-defined backend Google CloudSQL wrapper which prevents using your production database during development: DATABASES = { default : { ENGINE : rocket_engine.db.backends.cloudsql, INSTANCE : instance:name, NAME : database_name, To distinguish between production and development. The library provides helper method which could applied in settings.py: # settings.py from rocket_engine import on_appengine... if on_appengine: DATABASES = { default : { ENGINE : rocket_engine.db.backends.cloudsql, INSTANCE : instance:name, NAME : database_name, else: DATABASES = { default : { ENGINE : django.db.backends.sqlite3, NAME : development.db 1.7. Configuration 7
12 DEFAULT_FILE_STORAGE Use this setting to setup Blob objects as a default project storage. DEFAULT_FILE_STORAGE = rocket_engine.storage.blobstorage APPENGINE_PRE_UPDATE Callable that will be applied before sending application to Google AppEngine. Default: APPENGINE_PRE_UPDATE = appengine_hooks.pre_update APPENGINE_POST_UPDATE Callable that will be applied after sending application to Google AppEngine. Default: APPENGINE_POST_UPDATE = appengine_hooks.post_update Example of appengine_hooks.py file: from django.core.management import call_command def pre_update(): call_command( collectstatic ) def post_update(): call_command( on_appengine, syncdb ) # If south is being used call_command( on_appengine, migrate ) 8 Chapter 1. Installation
13 CHAPTER 2 Requirements 2.1 Google AppEngine SDK libraries: Google AppEngine SDK comes with sets of libraries. If there is a need to use one of them, you should append the library in your libraries seduction in app.yaml file rather to add them with use of requirements.txt file (explained below). Example of how to enable lxml in application. # app.yaml #... libraries: - name: django version: name: lxml version: Python requirements.txt To bring AppEngine development to more pythonic status. The library comes with basic support for python packaging system, You can keep list of required packages in requirements.txt file in your project root directory. Example of requirements.txt for simple project may contains packages like: django-tastypie django-taggit>=0.4 These packages will be downloaded and installed during deployment stage (manage.py appengine update). Requirements file may also contain references to packages being under source control: git+git://github.com/alex/django-taggit.git git+git://github.com/jezdez/django-dbtemplates.git@master Note: There is no need to add django or django-rocket-engine to your requirements.txt file. Those requirements are already satisfied. Note: Editable requirements (prepended with -e option) are not supported. More about using requirements file might be read here. 9
14 10 Chapter 2. Requirements
15 CHAPTER 3 Blob Storage To enable BlobStorage system as a Django storage, modify your code with elements presented below. # urls.py urlpatterns = patterns(... url(r ^media/(?p<filename>.*)/$, rocket_engine.views.file_serve ), ) # settings.py DEFAULT_FILE_STORAGE = rocket_engine.storage.blobstorage 11
16 12 Chapter 3. Blob Storage
17 CHAPTER 4 Commands 4.1 appengine Google AppEngine comes with appcfg.py to cover all functionality of the deployment process. This command is currently now wrapped by appengine django command and comes with some benefits of configuration hooks: python manage.py appengine update Calling this command will send your code on remote AppEngine instance. This option comes with support of pre and post update hooks see Settings. 4.2 on_appengine To perform an operation on Google AppEngine from your local machine use: python manage.py on_appengine syncdb This command will perform a sycndb operation on your remote instance. Google AppEngine doesn t come with any kind of remote access mechanism (like SSH, Talent), this command helps to overcome this inconvenience. Any command invoked this way will be called to use of remote storage instead of your local one. This command only affects storage. Other useful examples might be. remote python shell: python manage.py on_appengine shell remote CloudSQL shell: python manage.py on_appengine dbshell migrate database if South is being used: python manage.py on_appengine migrate 13
18 14 Chapter 4. Commands
19 CHAPTER 5 Settings 5.1 DATABASES django-rocket-engine comes with pre-defined backend Google CloudSQL wrapper which prevents using your production database during development: DATABASES = { default : { ENGINE : rocket_engine.db.backends.cloudsql, INSTANCE : instance:name, NAME : database_name, To distinguish between production and development. The library provides helper method which could applied in settings.py: # settings.py from rocket_engine import on_appengine... if on_appengine: DATABASES = { default : { ENGINE : rocket_engine.db.backends.cloudsql, INSTANCE : instance:name, NAME : database_name, else: DATABASES = { default : { ENGINE : django.db.backends.sqlite3, NAME : development.db 5.2 DEFAULT_FILE_STORAGE Use this setting to setup Blob objects as a default project storage. 15
20 DEFAULT_FILE_STORAGE = rocket_engine.storage.blobstorage 5.3 APPENGINE_PRE_UPDATE Callable that will be applied before sending application to Google AppEngine. Default: APPENGINE_PRE_UPDATE = appengine_hooks.pre_update 5.4 APPENGINE_POST_UPDATE Callable that will be applied after sending application to Google AppEngine. Default: APPENGINE_POST_UPDATE = appengine_hooks.post_update Example of appengine_hooks.py file: from django.core.management import call_command def pre_update(): call_command( collectstatic ) def post_update(): call_command( on_appengine, syncdb ) # If south is being used call_command( on_appengine, migrate ) 16 Chapter 5. Settings
django-gcm Documentation
django-gcm Documentation Release 0.9.3 Adam Bogdal August 23, 2015 Contents 1 Quickstart 3 2 Sending messages 5 2.1 Multicast message............................................ 5 3 Signals 7 4 Extending
Rapid Website Deployment With Django, Heroku & New Relic
TUTORIAL Rapid Website Deployment With Django, Heroku & New Relic by David Sale Contents Introduction 3 Create Your Website 4 Defining the Model 6 Our Views 7 Templates 7 URLs 9 Deploying to Heroku 10
Python and Google App Engine
Python and Google App Engine Dan Sanderson June 14, 2012 Google App Engine Platform for building scalable web applications Built on Google infrastructure Pay for what you use Apps, instance hours, storage,
Django Two-Factor Authentication Documentation
Django Two-Factor Authentication Documentation Release 1.3.1 Bouke Haarsma April 05, 2016 Contents 1 Requirements 3 1.1 Django.................................................. 3 1.2 Python..................................................
Nupic Web Application development
Nupic Web Application development Contents Focus in... 1 Why to build a Web Application?... 1 The common data flow schema... 1 Tools... 2 Preparations... 2 Download/Install Django... 2 Check if Django
latest Release 0.2.6
latest Release 0.2.6 August 19, 2015 Contents 1 Installation 3 2 Configuration 5 3 Django Integration 7 4 Stand-Alone Web Client 9 5 Daemon Mode 11 6 IRC Bots 13 7 Bot Events 15 8 Channel Events 17 9
DevKey Documentation. Release 0.1. Colm O Connor
DevKey Documentation Release 0.1 Colm O Connor March 23, 2015 Contents 1 Quickstart 3 2 FAQ 5 3 Release Notes 7 i ii DevKey Documentation, Release 0.1 Github PyPI Contents 1 DevKey Documentation, Release
Memopol Documentation
Memopol Documentation Release 1.0.0 Laurent Peuch, Mindiell, Arnaud Fabre January 26, 2016 Contents 1 User guide 3 1.1 Authentication in the admin backend.................................. 3 1.2 Managing
django-cron Documentation
django-cron Documentation Release 0.3.5 Tivix Inc. September 28, 2015 Contents 1 Introduction 3 2 Installation 5 3 Configuration 7 4 Sample Cron Configurations 9 4.1 Retry after failure feature........................................
AuShadha Documentation
AuShadha Documentation Release 0.1 Dr. Easwar T.R and others (see credits) October 17, 2015 Contents 1 Introduction to AuShadha Project 3 1.1 AuShadha (): Means medicine in Sanskrit................................
Slides from INF3331 lectures - web programming in Python
Slides from INF3331 lectures - web programming in Python Joakim Sundnes & Hans Petter Langtangen Dept. of Informatics, Univ. of Oslo & Simula Research Laboratory October 2013 Programming web applications
Django FTP Deploy Documentation
Django FTP Deploy Documentation Release 2.0 Lukasz Pakula November 12, 2014 Contents 1 User Guide 3 1.1 Installation................................................ 3 1.2 Usage...................................................
MyMoney Documentation
MyMoney Documentation Release 1.0 Yannick Chabbert June 20, 2016 Contents 1 Contents 3 1.1 Installation................................................ 3 1.1.1 Requirements..........................................
Django Web Framework. Zhaojie Zhang CSCI5828 Class Presenta=on 03/20/2012
Django Web Framework Zhaojie Zhang CSCI5828 Class Presenta=on 03/20/2012 Outline Web frameworks Why python? Why Django? Introduc=on to Django An example of Django project Summary of benefits and features
Effective Django. Build 2015.10.18. Nathan Yergler
Effective Django Build 2015.10.18 Nathan Yergler 18 October 2015 CONTENTS 1 Getting Started 3 1.1 Your Development Environment..................................... 3 1.2 Setting Up Your Environment......................................
Introduction to web development with Python and Django Documentation
Introduction to web development with Python and Django Documentation Release 0.1 Greg Loyse August 22, 2014 Contents 1 Introduction 3 1.1 The Internet............................................... 3
Installing and Running the Google App Engine On Windows
Installing and Running the Google App Engine On Windows This document describes the installation of the Google App Engine Software Development Kit (SDK) on a Microsoft Windows and running a simple hello
DjNRO Release 0.9 July 14, 2015
DjNRO Release 0.9 July 14, 2015 Contents 1 About 3 2 Features 5 3 Requirements 7 3.1 Required Packages............................................ 7 4 Installation 9 4.1 Installation/Configuration........................................
SagePay payment gateway package for django-oscar Documentation
SagePay payment gateway package for django-oscar Documentation Release 0.1.1 Glyn Jackson October 10, 2014 Contents 1 Installation and Configuration Guide 3 1.1 Installing Package............................................
Using Python, Django and MySQL in a Database Course
Using Python, Django and MySQL in a Database Course Thomas B. Gendreau Computer Science Department University of Wisconsin - La Crosse La Crosse, WI 54601 [email protected] Abstract Software applications
Source Code Management for Continuous Integration and Deployment. Version 1.0 DO NOT DISTRIBUTE
Source Code Management for Continuous Integration and Deployment Version 1.0 Copyright 2013, 2014 Amazon Web Services, Inc. and its affiliates. All rights reserved. This work may not be reproduced or redistributed,
EECS 398 Project 2: Classic Web Vulnerabilities
EECS 398 Project 2: Classic Web Vulnerabilities Revision History 3.0 (October 27, 2009) Revise CSRF attacks 1 and 2 to make them possible to complete within the constraints of the project. Clarify that
depl Documentation Release 0.0.1 depl contributors
depl Documentation Release 0.0.1 depl contributors December 19, 2013 Contents 1 Why depl and not ansible, puppet, chef, docker or vagrant? 3 2 Blog Posts talking about depl 5 3 Docs 7 3.1 Installation
Using Toaster in a Production Environment
Using Toaster in a Production Environment Alexandru Damian, David Reyna, Belén Barros Pena Yocto Project Developer Day ELCE 17 Oct 2014 Introduction Agenda: What is Toaster Toaster out of the box Toaster
Android Setup Phase 2
Android Setup Phase 2 Instructor: Trish Cornez CS260 Fall 2012 Phase 2: Install the Android Components In this phase you will add the Android components to the existing Java setup. This phase must be completed
KonyOne Server Installer - Linux Release Notes
KonyOne Server Installer - Linux Release Notes Table of Contents 1 Overview... 3 1.1 KonyOne Server installer for Linux... 3 1.2 Silent installation... 4 2 Application servers supported... 4 3 Databases
WebIOPi. Installation Walk-through Macros
WebIOPi Installation Walk-through Macros Installation Install WebIOPi on your Raspberry Pi Download the tar archive file: wget www.cs.unca.edu/~bruce/fall14/webiopi-0.7.0.tar.gz Uncompress: tar xvfz WebIOPi-0.7.0.tar.gz
How to Backup XenServer VM with VirtualIQ
How to Backup XenServer VM with VirtualIQ 1. Using Live Backup of VM option: Live Backup: This option can be used, if user does not want to power off the VM during the backup operation. This approach takes
Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c
Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c This document describes how to set up Oracle Enterprise Manager 12c to monitor
Magento OpenERP Integration Documentation
Magento OpenERP Integration Documentation Release 2.0dev Openlabs Technologies & Consulting (P) Limited September 11, 2015 Contents 1 Introduction 3 1.1 Installation................................................
Introduction to FreeNAS development
Introduction to FreeNAS development John Hixson [email protected] ixsystems, Inc. Abstract FreeNAS has been around for several years now but development on it has been by very few people. Even with corporate
Getting Started with the Ed-Fi ODS and Ed-Fi ODS API
Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Ed-Fi ODS and Ed-Fi ODS API Version 2.0 - Technical Preview October 2014 2014 Ed-Fi Alliance, LLC. All rights reserved. Ed-Fi is a registered trademark
StoreGrid Backup Server With MySQL As Backend Database:
StoreGrid Backup Server With MySQL As Backend Database: Installing and Configuring MySQL on Windows Overview StoreGrid now supports MySQL as a backend database to store all the clients' backup metadata
How to deploy fonts using Configuration Manager 2012 R2
In this post we will see steps on how to deploy fonts using Configuration Manager 2012 R2. If you have been tasked with deploying fonts using SCCM this post should help you. A font is a set of printable
How To Backup A Database On A Microsoft Powerpoint 3.5 (Mysqldump) On A Pcode (Mysql) On Your Pcode 3.3.5 On A Macbook Or Macbook (Powerpoint) On
Backing Up and Restoring Your MySQL Database (2004-06-15) - Contributed by Vinu Thomas Do you need to change your web host or switch your database server? This is probably the only time when you really
Backup and Restore the HPOM for Windows 8.16 Management Server
Backup and Restore the HPOM for Windows 8.16 Management Server White Paper version 2.0 Backup and Restore the HPOM for Windows 8.16 Management Server... 1 Change record... 2 Conceptual Overview... 3 Understanding
Central Administration QuickStart Guide
Central Administration QuickStart Guide Contents 1. Overview... 2 Licensing... 2 Documentation... 2 2. Configuring Central Administration... 3 3. Using the Central Administration web console... 4 Managing
Yocto Project Eclipse plug-in and Developer Tools Hands-on Lab
Yocto Project Eclipse plug-in and Developer Tools Hands-on Lab Yocto Project Developer Day San Francisco, 2013 Jessica Zhang Introduction Welcome to the Yocto Project Eclipse plug-in
Using and Contributing Virtual Machines to VM Depot
Using and Contributing Virtual Machines to VM Depot Introduction VM Depot is a library of open source virtual machine images that members of the online community have contributed. You can browse the library
Setting up VMware Server v1 for 2X VirtualDesktopServer Manual
Setting up VMware Server v1 for 2X VirtualDesktopServer Manual URL: www.2x.com E-mail: [email protected] Information in this document is subject to change without notice. Companies, names, and data used in examples
IceWarp to IceWarp Server Migration
IceWarp to IceWarp Server Migration Registered Trademarks iphone, ipad, Mac, OS X are trademarks of Apple Inc., registered in the U.S. and other countries. Microsoft, Windows, Outlook and Windows Phone
BIRT Application and BIRT Report Deployment Functional Specification
Functional Specification Version 1: October 6, 2005 Abstract This document describes how the user will deploy a BIRT Application and BIRT reports to the Application Server. Document Revisions Version Date
Continuous Delivery on AWS. Version 1.0 DO NOT DISTRIBUTE
Continuous Version 1.0 Copyright 2013, 2014 Amazon Web Services, Inc. and its affiliates. All rights reserved. This work may not be reproduced or redistributed, in whole or in part, without prior written
CycleServer Grid Engine Support Install Guide. version 1.25
CycleServer Grid Engine Support Install Guide version 1.25 Contents CycleServer Grid Engine Guide 1 Administration 1 Requirements 1 Installation 1 Monitoring Additional OGS/SGE/etc Clusters 3 Monitoring
NaviCell Data Visualization Python API
NaviCell Data Visualization Python API Tutorial - Version 1.0 The NaviCell Data Visualization Python API is a Python module that let computational biologists write programs to interact with the molecular
The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code.
Content Introduction... 2 Data Access Server Control Panel... 2 Running the Sample Client Applications... 4 Sample Applications Code... 7 Server Side Objects... 8 Sample Usage of Server Side Objects...
Kony MobileFabric. Sync Windows Installation Manual - WebSphere. On-Premises. Release 6.5. Document Relevance and Accuracy
Kony MobileFabric Sync Windows Installation Manual - WebSphere On-Premises Release 6.5 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and
How to Create a Delegated Administrator User Role / To create a Delegated Administrator user role Page 1
Managing user roles in SCVMM How to Create a Delegated Administrator User Role... 2 To create a Delegated Administrator user role... 2 Managing User Roles... 3 Backing Up and Restoring the VMM Database...
Pyak47 - Performance Test Framework. Release 1.2.1
Pyak47 - Performance Test Framework Release 1.2.1 November 07, 2015 Contents 1 Performance & Load Tests in Python 3 2 Site Menu 5 2.1 Detailed Install and Setup........................................
NSi Mobile Installation Guide. Version 6.2
NSi Mobile Installation Guide Version 6.2 Revision History Version Date 1.0 October 2, 2012 2.0 September 18, 2013 2 CONTENTS TABLE OF CONTENTS PREFACE... 5 Purpose of this Document... 5 Version Compatibility...
Assignment # 1 (Cloud Computing Security)
Assignment # 1 (Cloud Computing Security) Group Members: Abdullah Abid Zeeshan Qaiser M. Umar Hayat Table of Contents Windows Azure Introduction... 4 Windows Azure Services... 4 1. Compute... 4 a) Virtual
Ettema Lab Information Management System Documentation
Ettema Lab Information Management System Documentation Release 0.1 Ino de Bruijn, Lionel Guy November 28, 2014 Contents 1 Pipeline Design 3 2 Database design 5 3 Naming Scheme 7 3.1 Complete description...........................................
NGASI Universal APP Panel Administration and User Guide. 1999-2011 WebAppShowcase DBA NGASI
NGASI Universal APP Panel Administration and User Guide 2 Universal App Panel Table of Contents Part I Introduction 5 1 Overview... 5 2 Requirements... 5 Part II Administrator 8 1 Login... 8 2 Resellers/Webhosts...
i5k_doc Documentation
i5k_doc Documentation Release 1.0 Fish Lin June 27, 2016 Table of Contents 1 Pre-requeisites 3 1.1 Python modules............................................. 3 1.2 Service-side pre-requisites........................................
pure::variants Transformer for Software Configuration Management Manual
pure-systems GmbH Copyright 2003-2007 pure-systems GmbH 2007 Table of Contents 1. Synopsis... 1 2. Concept... 1 2.1. Client Authorization... 2 3. Installing the Transformer... 3 4. Using the Transformer...
Smartphone Pentest Framework v0.1. User Guide
Smartphone Pentest Framework v0.1 User Guide 1 Introduction: The Smartphone Pentest Framework (SPF) is an open source tool designed to allow users to assess the security posture of the smartphones deployed
Whisler 1 A Graphical User Interface and Database Management System for Documenting Glacial Landmarks
Whisler 1 A Graphical User Interface and Database Management System for Documenting Glacial Landmarks Whisler, Abbey, Paden, John, CReSIS, University of Kansas [email protected] Abstract The Landmarks
Web Application Frameworks. Robert M. Dondero, Ph.D. Princeton University
Web Application Frameworks Robert M. Dondero, Ph.D. Princeton University 1 Objectives You will learn about: The Django web app framework Other MVC web app frameworks (briefly) Other web app frameworks
SAS Marketing Optimization. Windows Installation Instructions for Hot Fix 51mo14
SAS Marketing Optimization Windows Installation Instructions for Hot Fix 51mo14 Introduction This document describes the steps necessary to install and deploy the SAS Marketing Optimization 5.1 hot fix
Copyright 2014, SafeNet, Inc. All rights reserved. http://www.safenet-inc.com
Ve Version 3.4 Copyright 2014, SafeNet, Inc. All rights reserved. http://www.safenet-inc.com We have attempted to make these documents complete, accurate, and useful, but we cannot guarantee them to be
Acronis Backup & Recovery 10 Advanced Server Virtual Edition. Quick Start Guide
Acronis Backup & Recovery 10 Advanced Server Virtual Edition Quick Start Guide Table of contents 1 Main components...3 2 License server...3 3 Supported operating systems...3 3.1 Agents... 3 3.2 License
KonyOne Server Prerequisites _ MS SQL Server
KonyOne Server Prerequisites _ MS SQL Server KonyOne Platform Release 5.0 Copyright 2012-2013 Kony Solutions, Inc. All Rights Reserved. Page 1 of 13 Copyright 2012-2013 by Kony Solutions, Inc. All rights
ALERT installation setup
ALERT installation setup In order to automate the installation process of the ALERT system, the ALERT installation setup is developed. It represents the main starting point in installing the ALERT system.
Creating a Java application using Perfect Developer and the Java Develo...
1 of 10 15/02/2010 17:41 Creating a Java application using Perfect Developer and the Java Development Kit Introduction Perfect Developer has the facility to execute pre- and post-build steps whenever the
Administrator s Guide
Attachment Save for Exchange Administrator s Guide document version 1.8 MAPILab, December 2015 Table of contents Intro... 3 1. Product Overview... 4 2. Product Architecture and Basic Concepts... 4 3. System
django-helpdesk Documentation
django-helpdesk Documentation Release 0.1 Ross Poulton + Contributors May 18, 2016 Contents 1 Contents 3 1.1 License.................................................. 3 1.2 Installation................................................
About This Document 3. About the Migration Process 4. Requirements and Prerequisites 5. Requirements... 5 Prerequisites... 5
Contents About This Document 3 About the Migration Process 4 Requirements and Prerequisites 5 Requirements... 5 Prerequisites... 5 Installing the Migration Tool and Enabling Migration 8 On Linux Servers...
MS 10978A Introduction to Azure for Developers
MS 10978A Introduction to Azure for Developers Description: Days: 5 Prerequisites: This course offers students the opportunity to learn about Microsoft Azure development by taking an existing ASP.NET MVC
Django FTP server Documentation
Django FTP server Documentation Release 0.3.5 Shinya Okano May 12, 2016 Contents 1 Overview 3 1.1 Origin................................................... 3 1.2 Getting Started..............................................
Git - Working with Remote Repositories
Git - Working with Remote Repositories Handout New Concepts Working with remote Git repositories including setting up remote repositories, cloning remote repositories, and keeping local repositories in-sync
Using sftp in Informatica PowerCenter
Using sftp in Informatica PowerCenter Applies to: Informatica PowerCenter Summary This article briefs about how to push/pull files using SFTP program in Informatica PowerCenter. Author Bio Author(s): Sukumar
Install guide for Websphere 7.0
DOCUMENTATION Install guide for Websphere 7.0 Jahia EE v6.6.1.0 Jahia s next-generation, open source CMS stems from a widely acknowledged vision of enterprise application convergence web, document, search,
1. Product Information
ORIXCLOUD BACKUP CLIENT USER MANUAL LINUX 1. Product Information Product: Orixcloud Backup Client for Linux Version: 4.1.7 1.1 System Requirements Linux (RedHat, SuSE, Debian and Debian based systems such
Course Summary. Prerequisites
Course Summary Kony MobileFabric 6.5 The Kony MobileFabric course is intended for developers and integrators working with Kony MobileFabric and Kony Studio. This course consists of 6 self-paced modules,
EMC SourceOne for Microsoft SharePoint Storage Management Version 7.1
EMC SourceOne for Microsoft SharePoint Storage Management Version 7.1 Installation Guide 302-000-227 REV 01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright
MySQL Quick Start Guide
Quick Start Guide MySQL Quick Start Guide SQL databases provide many benefits to the web designer, allowing you to dynamically update your web pages, collect and maintain customer data and allowing customers
Developing Microsoft Azure Solutions 20532B; 5 Days, Instructor-led
Developing Microsoft Azure Solutions 20532B; 5 Days, Instructor-led Course Description This course is intended for students who have experience building vertically scaled applications. Students should
Django Mail Queue Documentation
Django Mail Queue Documentation Release 2.3.0 Derek Stegelman May 21, 2016 Contents 1 Quick Start Guide 3 1.1 Requirements............................................... 3 1.2 Installation................................................
Exam Name: IBM InfoSphere MDM Server v9.0
Vendor: IBM Exam Code: 000-420 Exam Name: IBM InfoSphere MDM Server v9.0 Version: DEMO 1. As part of a maintenance team for an InfoSphere MDM Server implementation, you are investigating the "EndDate must
Integrity Checking and Monitoring of Files on the CASTOR Disk Servers
Integrity Checking and Monitoring of Files on the CASTOR Disk Servers Author: Hallgeir Lien CERN openlab 17/8/2011 Contents CONTENTS 1 Introduction 4 1.1 Background...........................................
SAIP 2012 Performance Engineering
SAIP 2012 Performance Engineering Author: Jens Edlef Møller ([email protected]) Instructions for installation, setup and use of tools. Introduction For the project assignment a number of tools will be used.
Practice Fusion API Client Installation Guide for Windows
Practice Fusion API Client Installation Guide for Windows Quickly and easily connect your Results Information System with Practice Fusion s Electronic Health Record (EHR) System Table of Contents Introduction
Migrating helpdesk to a new server
Migrating helpdesk to a new server Table of Contents 1. Helpdesk Migration... 2 Configure Virtual Web on IIS 6 Windows 2003 Server:... 2 Role Services required on IIS 7 Windows 2008 / 2012 Server:... 2
Umbraco Courier 2.0. Installation guide. Per Ploug Hansen 5/24/2011
Umbraco Courier 2.0 Installation guide Per Ploug Hansen 5/24/2011 Table of Contents Introduction... 3 Revision History... 3 Installing Courier 2 using a package... 4 Manual Courier installation... 5 Installing
TECHNICAL NOTE SETTING UP A STRM UPDATE SERVER. Configuring your Update Server
TECHNICAL NOTE SETTING UP A STRM UPDATE SERVER AUGUST 2012 STRM uses system configuration files to provide useful characterizations of network data flows. Updates to the system configuration files, available
Satchmo Documentation
Satchmo Documentation Release 0.9.3-Dev Chris Moffitt September 19, 2014 Contents 1 Overview 3 1.1 Satchmo Introduction.......................................... 3 1.2 About this Project............................................
Ipswitch Client Installation Guide
IPSWITCH TECHNICAL BRIEF Ipswitch Client Installation Guide In This Document Installing on a Single Computer... 1 Installing to Multiple End User Computers... 5 Silent Install... 5 Active Directory Group
How To Install Storegrid Server On Linux On A Microsoft Ubuntu 7.5 (Amd64) Or Ubuntu (Amd86) (Amd77) (Orchestra) (For Ubuntu) (Permanent) (Powerpoint
StoreGrid Linux Server Installation Guide Before installing StoreGrid as Backup Server (or) Replication Server in your machine, you should install MySQL Server in your machine (or) in any other dedicated
pure::variants Connector for Version Control Systems Manual
pure::variants Connector for Version Control Systems Manual pure-systems GmbH Version 3.2.17 for pure::variants 3.2 Copyright 2003-2015 pure-systems GmbH 2015 Table of Contents 1. Synopsis... 1 1.1. Software
Central Administration User Guide
User Guide Contents 1. Introduction... 2 Licensing... 2 Overview... 2 2. Configuring... 3 3. Using... 4 Computers screen all computers view... 4 Computers screen single computer view... 5 All Jobs screen...
Windows Server Update Services 3.0 SP2 Step By Step Guide
Windows Server Update Services 3.0 SP2 Step By Step Guide Microsoft Corporation Author: Anita Taylor Editor: Theresa Haynie Abstract This guide provides detailed instructions for installing Windows Server
