12
PHP ON GOOGLE APP ENGINE 10 TH PHPINDONESIA SURABAYA MEETUP GEDE LUMBUNG

PHP on Google App Engine

Embed Size (px)

DESCRIPTION

10th PHP Indonesia Surabaya Meetup - PHP on Google App Engine

Citation preview

Page 1: PHP on Google App Engine

PHP ON GOOGLE APP ENGINE1 0 T H P H P I N D O N E S I A S U R A B AYA M E E T U PG E D E L U M B U N G

Page 2: PHP on Google App Engine

APA ITU PAAS..??Model penyediaan layanan memungkinkan pelanggan untuk menyewa server virtual dan layanan terkait untuk menjalankan aplikasi yang ada atau untuk mengembangkan dan pengujian yang baru.

10th PHPIndonesia Surabaya MeetUp

Page 3: PHP on Google App Engine

CONTOH LAYANAN PAAS• Google App Engine• Amazon Web Service• Windows Azure• Engine Yard• etc

10th PHPIndonesia Surabaya MeetUp

Page 4: PHP on Google App Engine

GOOGLE APP ENGINE

• Layanan PaaS milik Google• Free space 500 Mb + 5 million pageview per month• Python, Java, PHP, Go, Cloud SQL

10th PHPIndonesia Surabaya MeetUp

Page 5: PHP on Google App Engine

LETS GETTING STARTED..• Download Google App Engine SDK for PHP• Download composer for local development• Install Silex Micro PHP Framework• Sign Up for an Account• Upload Application to Server

• Via project launcher• Using Git to Push and Deploy

• Maintenance App

10th PHPIndonesia Surabaya MeetUp

Page 6: PHP on Google App Engine

DOWNLOAD GOOGLE APP ENGINE SDK FOR PHP

• Python 2.7• PHP 5.4• App Engine PHP SDk• MySQL (optional)

10th PHPIndonesia Surabaya MeetUp

Page 7: PHP on Google App Engine

DOWNLOAD COMPOSER

• Composer for local development

10th PHPIndonesia Surabaya MeetUp

curl -sS https://getcomposer.org/installer | php

Page 8: PHP on Google App Engine

INSTALL SILEX MICRO PHP FRAMEWORK

10th PHPIndonesia Surabaya MeetUp

{ "require": { "silex/silex": "~1.1", "twig/twig": "v1.13.2” }}

Page 9: PHP on Google App Engine

SIGN UP FOR AN ACCOUNT

10th PHPIndonesia Surabaya MeetUp

• https://appengine.google.com/

Page 10: PHP on Google App Engine

UPLOAD APP – VIA PROJECT LAUNCHER

10th PHPIndonesia Surabaya MeetUp

Page 11: PHP on Google App Engine

UPLOAD APP – USING GIT PUSH AND DEPLOY

10th PHPIndonesia Surabaya MeetUp

• Create new project -> Cloud Console

git initgit add ./git commit -m 'Initial version' -agit remote add appengine <repo-url>git push appengine master

Page 12: PHP on Google App Engine

MAINTENANCE APP

10th PHPIndonesia Surabaya MeetUp

• Commit and Push• Change version number on app.yaml