=========================
Hari Rabu, tanggal 26 September 2012 pukul 06.30 WIB
- Prosesor 4 buah @Intel® Xeon® E7-4807 (6 core, 1.86 GHz, 18MB, 95W)
This gist assumes:
| <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
| $config['views_path'] = APPPATH . 'views/blade/'; | |
| $config['cache_path'] = APPPATH . 'cache/blade/'; |
| { | |
| "color_scheme": "Packages/Theme - Daylerees/Iceberg.tmTheme", | |
| "font_face": "Consolas", | |
| "font_size": 11, | |
| "highlight_line": true, | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ], | |
| "theme": "Soda Light.sublime-theme", |
| set :application, "App Name" # Your app name | |
| set :repository, "[email protected]:xxxxx/xxx.git" # Your git repository | |
| set :document_root, "/home/user/www/awesome_app" | |
| set :deploy_via, :remote_cache | |
| # SSH Settings | |
| set :user, "user_ssh" | |
| set :password, "password_ssh" | |
| set :use_sudo, false |
| html, body, .container, .content { | |
| height: 100%; | |
| } | |
| .container, .content { | |
| position: relative; | |
| } | |
| .proper-content { | |
| padding-top: 40px; /* >= navbar height */ |
| # Initial setup | |
| git clone -o framework -b master https://github.com/laravel/laravel.git project-name | |
| cd project-name | |
| git checkout --orphan master | |
| git commit -m "Initial commit" | |
| # Pulling changes | |
| git fetch framework | |
| git merge --squash -m "Upgrade Laravel" framework/develop | |
| # Fix merge conflicts if any and commit |