dev-master
9999999-dev https://github.com/prawee/silex-gae.gitCreate project with Silex for deploy to GAE
MIT
The Requires
api silex restful gae
Wallogit.com
2017 © Pedro Peláez
Create project with Silex for deploy to GAE
$ cd /var/www $ mkdir silex-gae $ cd silex-gae
$ npm init
# package name: (silex-gae) **enter
# version: (1.0.0) **enter
# description: **Create project with Silex for deploy to GAE
# entry point: (index.js) **index.php
# test command: **enter
# git repository: **https://github.com/prawee/silex-gae.git
# keywords: **GAE,Silex,RESTFul, API
# author: **Prawee Wongsa <prawee@hotmail.com>
# license: (ISC) **MIT
# {.....}
# Is this ok? (yes) **yes
$ composer require silex/silex:~2.0 # ./composer.json has been created # Loading composer repositories with package information # Updating dependencies (including require-dev) # ...waiting.. # Writing lock file # Generating autoload files
# nano index.php
```php <?php /* * Bootstrap file for initial project * @Author: Prawee Wongsa prawee@hotmail.com * @Date: 2017-10-04 15:26:25 * @Last Modified by: Prawee Wongsa * @Last Modified time: 2017-10-04 16:03:29 */, (*1)
/* * Require vendor and dependencies */ require_once DIR.'/vendor/autoload.php';, (*2)
/* * Create an instance */ $app = new Silex\Application();, (*3)
/* * Configuration of instance * Set default developing mode is true */ $app['debug'] = true;, (*4)
/* * Routing */ $app->get('/', function() { return 'Hi! Silex.'; });, (*5)
/* * Run the application */ $app->run(); ```, (*6)
$ php -S localhost:8000 # Please look it on your browser => http://localhost:8000
$ gcloud auth login $ gcloud config set project <your-project-id> $ gcloud app deploy
Create project with Silex for deploy to GAE
MIT
api silex restful gae